#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int z; cin >> z;
vector<int> v;
string str;
int nmb,ct = 0,ct2 = 0;
for (int i = 0; i < z; i++)
{
cin >> str >> nmb;
if (str == "TAK" && (nmb < 2 || ct < 10) && ct2 < 20)
{
v.push_back(i+1);
ct++;
ct2++;
}
}
for (auto it : v)
{
cout << it << " ";
}
return 0;
}
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 | #include <iostream> #include <vector> #include <string> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int z; cin >> z; vector<int> v; string str; int nmb,ct = 0,ct2 = 0; for (int i = 0; i < z; i++) { cin >> str >> nmb; if (str == "TAK" && (nmb < 2 || ct < 10) && ct2 < 20) { v.push_back(i+1); ct++; ct2++; } } for (auto it : v) { cout << it << " "; } return 0; } |
English