题目链接
思路:
判断两个最小值是否大于最大值即可
代码:
#include<bits/stdc++.h>
#define int long long
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
const int N=210;
const int M=2e4+5;
const double eps=1e-8;
const int mod=998244353;
const int inf=0x7fffffff;
const double pi=3.1415926;
using namespace std;
signed main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
int a[n];
for (int i=0;i<n;i++)
{
cin>>a[i];
}
if (a[0] + a[1]>a[n - 1])
{
cout<<-1<<endl;
}
else
{
cout<<"1 2 "<<n<<endl;
}
}
return 0;
}
本文介绍了一种简单有效的算法,用于判断三个边长能否构成一个合法的三角形。通过比较两个最小边长之和与最大边长,可以快速确定是否满足三角形的形成条件。代码实现使用了C++,并提供了完整的示例。
1299

被折叠的 条评论
为什么被折叠?



