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
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#include <iostream>
#include <string>
#include <fstream>
#include <vector>



struct Talia
{
	int p1;
	int p2;




	Talia()
	{
		p1 = p2 = 0;
	}

};



std::vector<Talia> t1;
std::vector<Talia> t2;



bool jest_przegrywajacy(std::vector<Talia> & t)
{
	size_t max = t.size();

	for(size_t i=0 ; i<t.size() ; ++i)
	{
		if( t[i].p2 >= max )
			return true;
	}

	return false;
}


bool jest_wygrywajacy(std::vector<Talia> & t)
{
	for(size_t i=0 ; i<t.size() ; ++i)
	{
		if( t[i].p2 >= t[i].p1 )
			return false;
	}

	return true;
}


void calc()
{
	if( jest_przegrywajacy(t1) )
		std::cout << "PRZEGRANA\n";
	else
	if( jest_przegrywajacy(t2) )
		std::cout << "WYGRANA\n";
	else
		std::cout << "REMIS\n";
}

void calc2()
{
	if( jest_wygrywajacy(t1) )
		std::cout << "WYGRANA\n";
	else
	if( jest_wygrywajacy(t2) )
		std::cout << "PRZEGRANA\n";
	else
		std::cout << "REMIS\n";
}



void read_sample(std::istream & str)
{
int n; // liczba talii kazdego z graczy
int m; // liczba par ktore nie powoduja remisu

int a, b;
char w;

	str >> n >> m;

	t1.clear();
	t2.clear();

	if( m > 0 )
	{
		t1.resize(n);
		t2.resize(n);
	}

	int p1 = 0, p2 = 0;

	for(int i=0 ; i<m ; ++i)
	{
		str >> a >> w >> b;

		a -= 1; // talie indeksujemy od zera
		b -= 1;

		if( w == '>' )
		{
			t1[a].p1 += 1;
			t2[b].p2 += 1;

			p1 += 1;
		}
		else
		{
			t1[a].p2 += 1;
			t2[b].p1 += 1;

			p2 += 1;
		}
	}

//	if( p1 > p2 )
//		std::cout << "WYGRANA\n";
//	else
//	if( p1 < p2 )
//		std::cout << "PRZEGRANA\n";
//	else
//		std::cout << "REMIS\n";

	calc2();
}




void read(std::istream & str)
{
int t;

	str >> t;

	for(int i=0 ; i<t ; ++i)
	{
		read_sample(str);
	}
}




int main()
{

//	std::ifstream file("/home/tomek/roboczy/prog/potyczki_2016/1a/test.txt");
//
//	if( !file )
//		return 1;
//
//	read(file);
	read(std::cin);







}