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
65
66
67
68
69
70
71
#include <bits/stdc++.h>
using namespace std;
long long int n, suma, a, sumal, wynik;
pair <long long int, long long int> p[500001];
bitset <500001> b;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);

cin >> n;
for(int i=1;i<=n;i++)
{
	cin>>a;
	p[i]={a,i};
	suma+=a;
}

sort(p, p+n);

for(int i=1; i<=n;i++)
{
wynik=p[i].first;

if(p[i-1].first==0)
{
	sumal+=p[i].first;
	continue;
}
if(p[i-1].first==p[i].first)
{
	if(b[p[i-1].second]==true)
		b[p[i].second]=true;
}
if(p[i-1].first<wynik)
{
	wynik+=sumal;
}
for(int j=i+1;j<=n;j++)
{
	if(wynik>p[j].first)
	wynik+=p[j].first;
	else
	break;
}

if(wynik==suma)
	b[p[i].second]=true;

sumal+=p[i].first;
}

for(int i=1;i<=n;i++)
{
	swap(p[i].first, p[i].second);
}

sort(p, p+n);

for(int i=1;i<=n;i++)
{
	if(b[i]==true)
	cout << 'T';
	else
	cout << 'N';
}


return 0;
}