#include<bits/stdc++.h> using namespace std; struct dane { long long wart, pol, suma; bool czy=1; }; bool cmp(dane a, dane b) { if(a.wart<b.wart) return 1; return 0; } bool cmp2(dane a, dane b) { if(a.pol<b.pol) return 1; return 0; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); long long n; cin>>n; dane tab[n]; for(int i=0; i<n; i++) { cin>>tab[i].wart; tab[i].pol=i; } sort(tab, tab+n,cmp); /*for(int i=0;i<n;i++) cout<<tab[i].pol<<" "<<tab[i].wart<<endl;*/ tab[0].suma=tab[0].wart; tab[0].czy=0; for(int i=1; i<n; i++) { tab[i].suma=tab[i-1].suma+tab[i].wart; if((tab[i].wart==tab[0].wart)||(tab[i].suma<=tab[i+1].wart)) tab[i].czy=0; } /*for(int i=0;i<n;i++) cout<<tab[i].pol<<" "<<tab[i].wart<<" "<<tab[i].czy<<endl;*/ if(tab[n-1].wart>tab[0].wart) tab[n-1].czy=1; for(int i=n-2; i>=0; i--) { if(tab[i+1].czy==0) tab[i].czy=0; } sort(tab, tab+n,cmp2); for(int i=0; i<n; i++) { if(tab[i].czy==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 53 54 55 56 57 58 59 60 61 62 63 64 | #include<bits/stdc++.h> using namespace std; struct dane { long long wart, pol, suma; bool czy=1; }; bool cmp(dane a, dane b) { if(a.wart<b.wart) return 1; return 0; } bool cmp2(dane a, dane b) { if(a.pol<b.pol) return 1; return 0; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); long long n; cin>>n; dane tab[n]; for(int i=0; i<n; i++) { cin>>tab[i].wart; tab[i].pol=i; } sort(tab, tab+n,cmp); /*for(int i=0;i<n;i++) cout<<tab[i].pol<<" "<<tab[i].wart<<endl;*/ tab[0].suma=tab[0].wart; tab[0].czy=0; for(int i=1; i<n; i++) { tab[i].suma=tab[i-1].suma+tab[i].wart; if((tab[i].wart==tab[0].wart)||(tab[i].suma<=tab[i+1].wart)) tab[i].czy=0; } /*for(int i=0;i<n;i++) cout<<tab[i].pol<<" "<<tab[i].wart<<" "<<tab[i].czy<<endl;*/ if(tab[n-1].wart>tab[0].wart) tab[n-1].czy=1; for(int i=n-2; i>=0; i--) { if(tab[i+1].czy==0) tab[i].czy=0; } sort(tab, tab+n,cmp2); for(int i=0; i<n; i++) { if(tab[i].czy==1) cout<<"T"; else cout<<"N"; } } |