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
#include <cstdlib>
#include <cstdio>
using namespace std;

int main(){
	int t, n, m;
	int a, b;
	char sgn;
	
	scanf("%d", &t);
	
	for(int i=0; i<t; i++){
		scanf("%d %d", &n, &m);
		
		bool *player2out = new bool[n];
		int *player2in = new int[n];
		
		for(int j=0; j<n; j++){
			player2out[j] = false;
			player2in[j] = 0;
		}
		
		for(int j=0; j<m; j++){
			scanf("%d %c %d", &a, &sgn, &b);
			
			if(sgn == '>')
				player2in[b-1]++;		
			else
				player2out[b-1] = true;
		}
		
		bool winner1 = false;
		bool winner2 = true;
		
		for(int j=0; j<n; j++){
			if(player2in[j] == n){
				winner1 = true;
				winner2 = false;
				break;
			}
			
			if(!player2out[j])
				winner2 = false;
		}
		
		if(winner1)
			printf("WYGRANA\n");
		else if(winner2)
			printf("PRZEGRANA\n");
		else
			printf("REMIS\n");
		
		delete [] player2in;
		delete [] player2out;
	}
	
	return 0;
}