#include <bits/stdc++.h> #define br "\n" #define int int64_t using namespace std; const string PLAYER_A = "Algosia\n"; const string PLAYER_B = "Bajtek\n"; int32_t main() { ios_base::sync_with_stdio(0); cin.tie(0); vector<int> aw(13, 0); vector<int> bw(13, 0); int sum_a = 0; int sum_b = 0; for (int i = 1; i <= 18; i++) { int x; cin >> x; sum_a += x; aw[x]++; } for (int i = 1; i <= 18; i++) { int x; cin >> x; sum_b += x; bw[x]++; } if (sum_a != sum_b) { cout << (sum_a > sum_b ? PLAYER_A : PLAYER_B); return 0; } for (int i = 10; i >= 0; i--) { if (aw[i] > bw[i]) { cout << PLAYER_A; return 0; } else if (aw[i] < bw[i]) { cout << PLAYER_B; return 0; } } cout << "remis\n"; }
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 | #include <bits/stdc++.h> #define br "\n" #define int int64_t using namespace std; const string PLAYER_A = "Algosia\n"; const string PLAYER_B = "Bajtek\n"; int32_t main() { ios_base::sync_with_stdio(0); cin.tie(0); vector<int> aw(13, 0); vector<int> bw(13, 0); int sum_a = 0; int sum_b = 0; for (int i = 1; i <= 18; i++) { int x; cin >> x; sum_a += x; aw[x]++; } for (int i = 1; i <= 18; i++) { int x; cin >> x; sum_b += x; bw[x]++; } if (sum_a != sum_b) { cout << (sum_a > sum_b ? PLAYER_A : PLAYER_B); return 0; } for (int i = 10; i >= 0; i--) { if (aw[i] > bw[i]) { cout << PLAYER_A; return 0; } else if (aw[i] < bw[i]) { cout << PLAYER_B; return 0; } } cout << "remis\n"; } |