#include<bits/stdc++.h> typedef long long ll; using namespace std; pair<ll, ll> T[500500]; int n; bool odw[500500]; bool isfit(ll a, ll x) { ll mas=a; for(int i=0;i<n;i++) { if(i==x) continue; if(T[i].first<mas) mas+=T[i].first; else return false; } return true; } int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin>>n; for(int i=0;i<n;i++) { cin>>T[i].first; T[i].second=i; } sort(T, T+n); int p=-1, q=n, pol; while(p!=q-1) { pol=(p+q)/2; if(isfit(T[pol].first, pol)==true) q=pol; else p=pol; } for(int i=q;i<n;i++) { odw[T[i].second]=1; } for(int i=0;i<n;i++) { if(odw[i]==1) cout<<"T"; else cout<<"N"; } }
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 | #include<bits/stdc++.h> typedef long long ll; using namespace std; pair<ll, ll> T[500500]; int n; bool odw[500500]; bool isfit(ll a, ll x) { ll mas=a; for(int i=0;i<n;i++) { if(i==x) continue; if(T[i].first<mas) mas+=T[i].first; else return false; } return true; } int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin>>n; for(int i=0;i<n;i++) { cin>>T[i].first; T[i].second=i; } sort(T, T+n); int p=-1, q=n, pol; while(p!=q-1) { pol=(p+q)/2; if(isfit(T[pol].first, pol)==true) q=pol; else p=pol; } for(int i=q;i<n;i++) { odw[T[i].second]=1; } for(int i=0;i<n;i++) { if(odw[i]==1) cout<<"T"; else cout<<"N"; } } |