#include <bits/stdc++.h>
using namespace std;
#define JOIN_(X, Y) X##Y
#define JOIN(X, Y) JOIN_(X, Y)
#define TMP JOIN(tmp, __LINE__)
#define PB push_back
#define SZ(x) int((x).size())
#define REP(i, n) for (int i = 0, TMP = (n); i < TMP; ++i)
#define FOR(i, a, b) for (int i = (a), TMP = (b); i <= TMP; ++i)
#define FORD(i, a, b) for (int i = (a), TMP = (b); i >= TMP; --i)
#ifdef DEBUG
#define DEB(x) (cerr << x)
#else
#define DEB(x)
#endif
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pii;
const int INF = 1e9 + 9;
void inline one() {
vector<int> a(11);
vector<int> b(11);
int sum_a = 0;
int sum_b = 0;
REP(i, 18) {
int x;
cin >> x;
++a[x];
sum_a += x;
}
REP(i, 18) {
int x;
cin >> x;
++b[x];
sum_b += x;
}
a.PB(sum_a);
b.PB(sum_b);
reverse(a.begin(), a.end());
reverse(b.begin(), b.end());
if (a > b) {
cout << "Algosia\n";
} else if (a < b) {
cout << "Bajtek\n";
} else {
cout << "remis\n";
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
// int z; cin >> z; while(z--)
one();
}
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 | #include <bits/stdc++.h> using namespace std; #define JOIN_(X, Y) X##Y #define JOIN(X, Y) JOIN_(X, Y) #define TMP JOIN(tmp, __LINE__) #define PB push_back #define SZ(x) int((x).size()) #define REP(i, n) for (int i = 0, TMP = (n); i < TMP; ++i) #define FOR(i, a, b) for (int i = (a), TMP = (b); i <= TMP; ++i) #define FORD(i, a, b) for (int i = (a), TMP = (b); i >= TMP; --i) #ifdef DEBUG #define DEB(x) (cerr << x) #else #define DEB(x) #endif typedef long long ll; typedef vector<int> vi; typedef pair<int, int> pii; const int INF = 1e9 + 9; void inline one() { vector<int> a(11); vector<int> b(11); int sum_a = 0; int sum_b = 0; REP(i, 18) { int x; cin >> x; ++a[x]; sum_a += x; } REP(i, 18) { int x; cin >> x; ++b[x]; sum_b += x; } a.PB(sum_a); b.PB(sum_b); reverse(a.begin(), a.end()); reverse(b.begin(), b.end()); if (a > b) { cout << "Algosia\n"; } else if (a < b) { cout << "Bajtek\n"; } else { cout << "remis\n"; } } int main() { ios::sync_with_stdio(false); cin.tie(0); // int z; cin >> z; while(z--) one(); } |
English