#include <bits/stdc++.h>
using namespace std;
#define int long long
void solve() {
int n;
cin >> n;
vector<int> tab(n);
vector<bool> canBe(n, false);
for (int i = 0; i < n; ++i) {
string a;
cin >> a >> tab[i];
if (a == "TAK") canBe[i] = true;
}
int fNum = 0;
for (int i = 0; i < n; ++i) {
if (canBe[i] && fNum < 20) {
if (fNum < 10 || tab[i] < 2) {
cout << i+1 << ' ';
fNum++;
}
}
}
}
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
solve();
}
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 | #include <bits/stdc++.h> using namespace std; #define int long long void solve() { int n; cin >> n; vector<int> tab(n); vector<bool> canBe(n, false); for (int i = 0; i < n; ++i) { string a; cin >> a >> tab[i]; if (a == "TAK") canBe[i] = true; } int fNum = 0; for (int i = 0; i < n; ++i) { if (canBe[i] && fNum < 20) { if (fNum < 10 || tab[i] < 2) { cout << i+1 << ' '; fNum++; } } } } signed main() { ios_base::sync_with_stdio(false); cin.tie(NULL); solve(); } |
English