#include <iostream>
#include <string>
using namespace std;
string graj()
{
int n, m, lWygr[100000]={}, lPrzegr[100000]={};
cin>>n>>m;
for (int i=0; i<m; ++i)
{
int a, b;
char c;
cin>>a>>c>>b;
--b;
if (c=='>') ++lPrzegr[b];
else ++lWygr[b];
}
bool kazdyWygr=true;
for (int i=0; i<n; ++i)
{
if (lPrzegr[i]==n)
return "WYGRANA";
if (!lWygr[i])
kazdyWygr=false;
}
return kazdyWygr ? "PRZEGRANA" : "REMIS";
}
int main()
{
ios::sync_with_stdio(false);
int t;
cin>>t;
while (t--)
cout<<graj()<<endl;
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 | #include <iostream> #include <string> using namespace std; string graj() { int n, m, lWygr[100000]={}, lPrzegr[100000]={}; cin>>n>>m; for (int i=0; i<m; ++i) { int a, b; char c; cin>>a>>c>>b; --b; if (c=='>') ++lPrzegr[b]; else ++lWygr[b]; } bool kazdyWygr=true; for (int i=0; i<n; ++i) { if (lPrzegr[i]==n) return "WYGRANA"; if (!lWygr[i]) kazdyWygr=false; } return kazdyWygr ? "PRZEGRANA" : "REMIS"; } int main() { ios::sync_with_stdio(false); int t; cin>>t; while (t--) cout<<graj()<<endl; return 0; } |
English