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
#include <stdio.h>
#include <vector>

using namespace std;


bool kazdy_kogos_bije(const vector<int> & v, int n) 
{
    for(int i = 0; i < n; ++i) {
        if (v[i] == 0)
            return false;
    }
    return true;
}


bool istnieje_bity_przez_wszystkich(const vector<int> & v, int n) 
{
    for(int i = 0; i < n; ++i) {
        if (v[i] == n)
            return true;
    }
    return false;
}


void run_case()
{
    int n, m;
    scanf("%d %d", &n, &m);

    // bedziemy liczyc dla talii przeciwnika
    vector<int> jest_bity (n, 0);
    vector<int> bije (n, 0);

    int from, to;
    char w;

    for(int i = 0; i < m; ++i) {
        scanf("%d %c %d", &from, &w, &to);
        
        // inne konwencje numerowania
        to--;
        from--;

        if (w == '<') {
            bije[to] = bije[to] + 1;
        } else if (w == '>') {
            jest_bity[to] = jest_bity[to] + 1;
        } else {
            puts("[ERROR]: Misparsed input string");
        }
    }

    if (kazdy_kogos_bije(bije, n)) {
        puts("PRZEGRANA");
    } else if (istnieje_bity_przez_wszystkich(jest_bity, n)) {
        puts("WYGRANA");
    } else {
        puts("REMIS");
    }
}



int konkurs() 
{
    int t;

    scanf("%d", &t);
    for (int i = 0; i < t; ++i)
        run_case();

    return 0;
}


int main()
{
    konkurs();
    return 0;
}