#include <iostream>
#include <vector>
using namespace std;
int main()
{
ios_base::sync_with_stdio(0);
int t;
cin >> t;
for (int i = 0; i < t; ++i)
{
int n, m;
cin >> n >> m;
vector<int> il1(n, 0), il2(n, 0);
int a, b;
char c;
for (int j = 0; j < m; ++j)
{
cin >> a >> c >> b;
--a;
--b;
if (c == '>') ++il1[b];
else ++il2[b];
}
bool w = false;
for (int j = 0; j < n; ++j)
if (il1[j] == n) w = true;
bool p = true;
for (int j = 0; j < n; ++j)
if (il2[j] == 0) p = false;
if (w) cout << "WYGRANA\n";
else
{
if (p) cout << "PRZEGRANA\n";
else cout << "REMIS\n";
}
}
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 | #include <iostream> #include <vector> using namespace std; int main() { ios_base::sync_with_stdio(0); int t; cin >> t; for (int i = 0; i < t; ++i) { int n, m; cin >> n >> m; vector<int> il1(n, 0), il2(n, 0); int a, b; char c; for (int j = 0; j < m; ++j) { cin >> a >> c >> b; --a; --b; if (c == '>') ++il1[b]; else ++il2[b]; } bool w = false; for (int j = 0; j < n; ++j) if (il1[j] == n) w = true; bool p = true; for (int j = 0; j < n; ++j) if (il2[j] == 0) p = false; if (w) cout << "WYGRANA\n"; else { if (p) cout << "PRZEGRANA\n"; else cout << "REMIS\n"; } } return 0; } |
English