#include <bits/stdc++.h> using namespace std; const int MAX_N = 500000; long long t[MAX_N]; long long t2[MAX_N]; int n; bool check(int dig) { long long s = t2[dig]; for(int i =0;i<n;i++){ if(i!=dig) { if(t2[i]<s){ s+=t2[i]; } else { return false; } } } return true; } int binsrch(int lo, int hi) { int mid = (lo + hi) / 2; while (lo < hi) { mid = (lo + hi) / 2; if (check(mid)) { hi = mid; } else { lo = mid + 1; } } return mid; } void solve() { cin>>n; for(int i = 0;i<n;i++) { cin>>t[i]; } for(int i = 0;i<n;i++) { t2[i]=t[i]; } sort(t2,t2+n); int mid = binsrch(0,n-1); bool v1 = check(mid); if(v1==false) { if(v1==n-1){ for(int i =0;i<n;i++) cout<<"N"; return; } mid++; v1 = check(mid); if(v1==false) { for(int i =0;i<n;i++) cout<<"N"; return; } } for(int i =0;i<n;i++){ if(t[i]>=t2[mid]) cout<<"T"; else cout<<"N"; } } int main() { ios_base::sync_with_stdio(false); solve(); return 0; }
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 | #include <bits/stdc++.h> using namespace std; const int MAX_N = 500000; long long t[MAX_N]; long long t2[MAX_N]; int n; bool check(int dig) { long long s = t2[dig]; for(int i =0;i<n;i++){ if(i!=dig) { if(t2[i]<s){ s+=t2[i]; } else { return false; } } } return true; } int binsrch(int lo, int hi) { int mid = (lo + hi) / 2; while (lo < hi) { mid = (lo + hi) / 2; if (check(mid)) { hi = mid; } else { lo = mid + 1; } } return mid; } void solve() { cin>>n; for(int i = 0;i<n;i++) { cin>>t[i]; } for(int i = 0;i<n;i++) { t2[i]=t[i]; } sort(t2,t2+n); int mid = binsrch(0,n-1); bool v1 = check(mid); if(v1==false) { if(v1==n-1){ for(int i =0;i<n;i++) cout<<"N"; return; } mid++; v1 = check(mid); if(v1==false) { for(int i =0;i<n;i++) cout<<"N"; return; } } for(int i =0;i<n;i++){ if(t[i]>=t2[mid]) cout<<"T"; else cout<<"N"; } } int main() { ios_base::sync_with_stdio(false); solve(); return 0; } |