-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHFADJSUM.cpp
101 lines (89 loc) · 1.76 KB
/
CHFADJSUM.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
vector<int> v(n);
vector<int> b(n);
map<int,int> mp;
for(int i=0;i<n;i++)
{
cin>>v[i];
mp[v[i]]++;
}
b=v;
sort(b.begin(),b.end());
if(mp.size()==1 or n<=2)
cout<<"NO"<<endl;
else if(mp[b[n-1]]==1 and mp.size()==2)
cout<<"NO"<<endl;
else if(mp[b[n-1]]>(n+1)/2)
cout<<"NO"<<endl;
else
cout<<"YES"<<endl;
// sort(v.begin(),v.end(),greater<int>());
// int z=b[n-1]+b[n-2];
// bool flag=1;
// for(int i=0;i<(n/2);i++)
// {
// if(b[i]+b[n-i+1]>=z)
// {
// flag=0;
// break;
// }
// }
// if(n==3)
// {
// swap(v[1],v[2]);
// if((v[0]+v[1]>=z) or (v[1]+v[2]>=z))
// cout<<"NO"<<endl;
// else
// cout<<"YES"<<endl;
// continue;
// }
// vector<int> temp(n);
// int j=n-1;
// int i=0;
// int k=0;
// while(i<=j)
// {
// if(i==j)
// {
// temp[k]=b[i];
// k++;
// i++;
// break;
// }
// temp[k++]=b[i];
// temp[k++]=b[j];
// i++;
// j--;
// }
// bool flag=1;
// //swap(temp[1],temp[n-1]);
// for(int i=0;i<n-1;i++)
// {
// if(temp[i]+temp[i+1]>=z)
// {
// flag=0;
// break;
// }
// }
// for(auto it:temp)
// cout<<it<<" ";
// cout<<endl;
// if(flag)
// cout<<"YES"<<endl;
// else
// cout<<"NO"<<endl;
}
return 0;
}