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
// Autor: Wiktor Kotala
#include <bits/stdc++.h>

using namespace std;
const string wyniki[3] = {"Algosia\n", "Bajtek\n", "remis\n"};
const int rund = 18;
const int maxPunktow = 10;

int main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    array<int, maxPunktow + 2> A = {0}, B = {0};

    for(int i = 0; i < rund; i++) {
        unsigned int wynik;
        cin >> wynik;
        A[wynik]++;
        A[maxPunktow + 1] += wynik;
    }
    for(int i = 0; i < rund; i++) {
        unsigned int wynik;
        cin >> wynik;
        B[wynik]++;
        B[maxPunktow + 1] += wynik;
    }

    for(unsigned int i = maxPunktow + 1; i > 0; i--) {
        if(A[i] > B[i]) {
            cout << wyniki[0];
            return 0;
        }
        else if(A[i] < B[i]) {
            cout << wyniki[1];
            return 0;
        }
    }

    cout << wyniki[2];
    return 0;
}