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
#include <iostream>
#include <stack>
#define MAX 100000

using namespace std;

int main()
{
ios::sync_with_stdio(false);
int out[MAX];
bool czy_0_in[MAX+1];
int t;
int tym;
int n;
int m;
int a;
int b;
char k;
int l=0;
bool czy;
cin>>t;
while(l<t)
{
cin>>n>>m;
for(int i=0;i<n;i++)  //zerowanie tablic
{
out[i]=0;
czy_0_in[i]=true;
}
czy_0_in[n]=true;

for(int i=0;i<m;i++)
{
cin>>a>>k>>b;
if(k=='<' && czy_0_in[b-1]) czy_0_in[b-1]=false;
if(k=='>'){ out[b-1]++;}
}
czy=true;
tym=0;
while(!czy_0_in[tym])tym++;
if(tym==n)
{
cout<<"PRZEGRANA \n";
czy=false;
}
for(int i=0;(i<n) && czy;i++)
{
if(out[i]==n)
{
cout<<"WYGRANA \n";
czy=false;
}

}
if(czy)cout<<"REMIS \n";
l++;
}

 return 0;
}