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
#include<cstdio>
#include<set>

int main() {
    int t;
    scanf("%d", &t);
    while (t--) {
        int n, m;
        scanf("%d%d", &n, &m);
        int bajtek, bitek;
        char relation;
        int biteks_losing_with_count[n + 2];
        int is_winning_for_bitek[n + 2];
        std::fill(biteks_losing_with_count, biteks_losing_with_count + n + 1, 0);
        std::fill(is_winning_for_bitek, is_winning_for_bitek + n + 1, 0);
        for (int i = 0; i < m; i++) {
            scanf("%d %c %d", &bajtek, &relation, &bitek);
            if (relation == '<') {
                is_winning_for_bitek[bitek] = 1;
            } else {
                biteks_losing_with_count[bitek]++;
            }
        }
        
        int biteks_winning_count = 0;
        int worst_biteks_deck = 0;
        for (int i = 1; i <= n; i++) {
            worst_biteks_deck = std::max(worst_biteks_deck, biteks_losing_with_count[i]);
            biteks_winning_count += is_winning_for_bitek[i];
        }

        if (biteks_winning_count == n) {
            printf("PRZEGRANA\n");
        } else if (worst_biteks_deck == n) {
            printf("WYGRANA\n");
        } else {
            printf("REMIS\n");
        }
    }

    return 0;
}