#include <bits/stdc++.h>
#define dbg(x) " [" << #x << ": " << (x) << "] "
using namespace std;
using ll = long long;
template<typename A, typename B>
ostream& operator<<(ostream& out, const pair<A,B>& p) {
return out << "(" << p.first << ", " << p.second << ")";
}
template<typename T>
ostream& operator<<(ostream& out, const vector<T>& c) {
out << "{";
for(auto it = c.begin(); it != c.end(); it++) {
if(it != c.begin()) out << ", ";
out << *it;
}
return out << "}";
}
vector<int> inp(int n) {
vector<int> v(n);
int s = 0;
for(int& i : v) {
cin >> i;
s += i;
}
v.push_back(s);
sort(v.rbegin(), v.rend());
return v;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int n = 18;
vector<int> a = inp(n), b = inp(n);
if(a == b) {
cout << "remis" << endl;
} else if(a > b) {
cout << "Algosia" << endl;
} else {
cout << "Bajtek" << endl;
}
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 | #include <bits/stdc++.h> #define dbg(x) " [" << #x << ": " << (x) << "] " using namespace std; using ll = long long; template<typename A, typename B> ostream& operator<<(ostream& out, const pair<A,B>& p) { return out << "(" << p.first << ", " << p.second << ")"; } template<typename T> ostream& operator<<(ostream& out, const vector<T>& c) { out << "{"; for(auto it = c.begin(); it != c.end(); it++) { if(it != c.begin()) out << ", "; out << *it; } return out << "}"; } vector<int> inp(int n) { vector<int> v(n); int s = 0; for(int& i : v) { cin >> i; s += i; } v.push_back(s); sort(v.rbegin(), v.rend()); return v; } int main() { ios_base::sync_with_stdio(false); cin.tie(0); int n = 18; vector<int> a = inp(n), b = inp(n); if(a == b) { cout << "remis" << endl; } else if(a > b) { cout << "Algosia" << endl; } else { cout << "Bajtek" << endl; } return 0; } |
English