#include <stdio.h> #include <string.h> #define S 1<<17 int t, n, a, b, m, i; char w[10]; int A[S], B[S], wa, wb; int main() { scanf("%d", &t); while(t--) { wa = 0; wb = 0; if(n>0) { ++n; memset(A, 0, n * sizeof(int)); memset(B, 0, n * sizeof(int)); } scanf("%d %d", &n, &m); i = m; while(m--) { scanf("%d %s %d", &a, w, &b); if(*w == '>') { if(!A[a]) { ++wa; } ++A[a]; } else { if(!B[b]) { ++wb; } ++B[b]; } } if(wa == n) { puts("WYGRANA"); } else { if(wb == n) { puts("PRZEGRANA"); } else { puts("REMIS"); } } } return 0; }
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 <stdio.h> #include <string.h> #define S 1<<17 int t, n, a, b, m, i; char w[10]; int A[S], B[S], wa, wb; int main() { scanf("%d", &t); while(t--) { wa = 0; wb = 0; if(n>0) { ++n; memset(A, 0, n * sizeof(int)); memset(B, 0, n * sizeof(int)); } scanf("%d %d", &n, &m); i = m; while(m--) { scanf("%d %s %d", &a, w, &b); if(*w == '>') { if(!A[a]) { ++wa; } ++A[a]; } else { if(!B[b]) { ++wb; } ++B[b]; } } if(wa == n) { puts("WYGRANA"); } else { if(wb == n) { puts("PRZEGRANA"); } else { puts("REMIS"); } } } return 0; } |