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

using namespace std;

const int mx = 1e4+7;

int res[20], ctr;

int32_t main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    int n;
    cin>>n;

    for (int i = 1; i <= n; i++) {
        if (ctr>=20) {
            break;
        }
        string s;
        int l;
        cin>>s>>l;
        if (s=="TAK") {
            if (ctr>=10) {
                if (l < 2) {
                    res[ctr]=i;
                    ctr++;
                }
            }
            else {
                res[ctr]=i;
                ctr++;
            }
        }
    }

    for (int i = 0; i <= 19; i++) {
        cout<<res[i]<<" ";
    }

}