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
#include<bits/stdc++.h>
using namespace std;

long long t[500007];
long long a[500007];
long long pre[500007];
int main () {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n;
    long long wynik=0;
    cin >> n;
    pre[0]=0;
    for (int i=1; i<=n; i++) {
        cin >> t[i];
        a[i]=t[i];
        pre[i]=pre[i-1]+t[i];
    }
    sort (t+1, t+n+1);
        for (int i=1; i<=n; i++) {
        pre[i]=pre[i-1]+t[i];
    }
    wynik=t[n];
    pre[n+1]=pre[n];
    for (int i=n; i>=1; i--) {
        if (pre[i]>pre[i+1]-pre[i]) {
            wynik=pre[i]-pre[i-1];
        }
        else {
                wynik=pre[i]-pre[i-1];
                break;
        }
    }
    for (int i=1; i<=n; i++) {
        if (a[i]>wynik)
            cout << "T";
        else cout << "N";
    }
return 0;
}