#include <bits/stdc++.h> using namespace std; const int MXN=5e5+10; int a[MXN], c[MXN], n; bool check(int d) { long long s=c[d]; bool czy=true; for (int i=1; i<=n; i++) { if (c[i]==c[d] && czy) { czy=false; continue; } if (s > c[i]) { s+=c[i]; } else { return false; } } return true; } int bins() { int r=0; for (int i=18; i>=0; i--) { r|=(1<<i); if (r>n || check(r)) r^=(1<<i); } return c[r]; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cin>>n; for (int i=1; i<=n; i++) { cin>>a[i]; c[i]=a[i]; } sort(c+1, c+n+1); int odp=bins(); for (int i=1; i<=n; i++) { if (a[i] <= odp) { cout<<"N"; } else { cout<<"T"; } } 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 | #include <bits/stdc++.h> using namespace std; const int MXN=5e5+10; int a[MXN], c[MXN], n; bool check(int d) { long long s=c[d]; bool czy=true; for (int i=1; i<=n; i++) { if (c[i]==c[d] && czy) { czy=false; continue; } if (s > c[i]) { s+=c[i]; } else { return false; } } return true; } int bins() { int r=0; for (int i=18; i>=0; i--) { r|=(1<<i); if (r>n || check(r)) r^=(1<<i); } return c[r]; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cin>>n; for (int i=1; i<=n; i++) { cin>>a[i]; c[i]=a[i]; } sort(c+1, c+n+1); int odp=bins(); for (int i=1; i<=n; i++) { if (a[i] <= odp) { cout<<"N"; } else { cout<<"T"; } } return 0; } |