forked from ShreyaDhir/HacktoberFest2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBadTriangle.cpp
63 lines (57 loc) · 1.38 KB
/
BadTriangle.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <bits/stdc++.h>
#include <cmath>
using namespace std;
#define int long long
#define endl "\n"
const int MOD = 1e9+7;
int max(int x, int y)
{
return (x>y)?x:y;
}
// std::vector<pair<int,int> unecces;
void dfs(int u, vector<int> adj[],
vector<bool> &visited) {
visited[u] = true;
for (int v : adj[u])
{
if(!visited[v])
dfs(v,adj,visited);
}
}
int gcd(int a, int b)
{
if(a==0)
return b;
else
return gcd(b%a,a);
}
int32_t main()
{
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
freopen("error.txt", "w", stderr);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while(t--)
{
int n;
cin >> n;
int a[n];
for(int i=0;i<n;i++)
{
cin >> a[i];
}
int i = 0;
int j = 1;
int k = n-1;
if(a[i]+a[j]>a[k] && a[i]+a[k]>a[j] && a[j]+a[k]>a[i])
cout << -1 << endl;
else
cout << i+1 << " " << j+1 << " " << k+1 << endl;
}
return 0;
}