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

using namespace std;

constexpr int S = 5e5+1;

long long sum = 0;
int n, i, j;
pair<int, int> tab[S];
bool used[S];

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cin >> n;
    for(int ii = 0; ii < n; ii++)
    {
        cin >> tab[ii].first;
        tab[ii].second = ii;
    }
    sort(tab, tab + n);
    i = 1;
    j = 0;
    while(j < n && i < n)
    {
        if(tab[i].first + sum > tab[j].first)
        {
            sum += tab[j].first;
            j++;
            if(j == i)
            {
                j++;
            }
        }
        else
        {
            i++;
            if(j > i)
            {
                sum += tab[i-1].first;
                sum -= tab[i].first;
            }
            if(i == j)
            {
                j++;
            }
        }
    }
    for(int ii = i; ii < n; ii++)
    {
        used[tab[ii].second] = true;
    }
    for(int ii = 0; ii < n; ii++)
    {
        if(used[ii] == true)
            cout << 'T';
        else cout << 'N';

    }
    return 0;
}