#include <fstream>
#include <iostream>
#include <string>
#include <list>
using namespace std;
string word;
list<string> arguments = {};
list<string> list1 = {};
list<int> list2 = {};
int main()
{
std::ios_base::sync_with_stdio(false);
std::cin.tie(NULL);
while (std::cin >> word) {
//cout << word << "\n";
arguments.push_back(word);
}
//cout << "-----" << "\n";
auto n = next(arguments.begin(), 0);
int k = stoi(*n);
int m = 0;
for (string a : arguments)
{
auto n = next(arguments.begin(), 1 + m);
//cout << *n << "\n";
m = m + 2;
list1.push_back(*n);
if (m >= 2 * k)
{
break;
}
}
//cout << "-----" << "\n";
m = 0;
for (string a : arguments)
{
auto n = next(arguments.begin(), 2 + m);
//cout << *n << "\n";
m = m + 2;
list2.push_back(stoi(*n));
if (m >= 2 * k)
{
break;
}
}
//cout << "-----" << "\n";
int o = 0;
int h = 1;
m = 0;
while (o <= 10)
{
auto l = next(list1.begin(), m);
if (*l == "TAK")
{
cout << h << " ";
o++;
}
m++;
h++;
}
while (o <= 19)
{
auto l = next(list1.begin(), m);
auto p = next(list2.begin(), m);
if (*l == "TAK" && *p < 2)
{
if (o == 19)
{
cout << h;
}
else
{
cout << h << " ";
}
o++;
}
m++;
h++;
}
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 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | #include <fstream> #include <iostream> #include <string> #include <list> using namespace std; string word; list<string> arguments = {}; list<string> list1 = {}; list<int> list2 = {}; int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); while (std::cin >> word) { //cout << word << "\n"; arguments.push_back(word); } //cout << "-----" << "\n"; auto n = next(arguments.begin(), 0); int k = stoi(*n); int m = 0; for (string a : arguments) { auto n = next(arguments.begin(), 1 + m); //cout << *n << "\n"; m = m + 2; list1.push_back(*n); if (m >= 2 * k) { break; } } //cout << "-----" << "\n"; m = 0; for (string a : arguments) { auto n = next(arguments.begin(), 2 + m); //cout << *n << "\n"; m = m + 2; list2.push_back(stoi(*n)); if (m >= 2 * k) { break; } } //cout << "-----" << "\n"; int o = 0; int h = 1; m = 0; while (o <= 10) { auto l = next(list1.begin(), m); if (*l == "TAK") { cout << h << " "; o++; } m++; h++; } while (o <= 19) { auto l = next(list1.begin(), m); auto p = next(list2.begin(), m); if (*l == "TAK" && *p < 2) { if (o == 19) { cout << h; } else { cout << h << " "; } o++; } m++; h++; } return 0; } |
English