output
stringlengths
52
181k
instruction
stringlengths
296
182k
#include <bits/stdc++.h> using namespace std; int a[200]; int b[200]; int n, m, num, s, t; char st[200]; int Abs(int x) { if (x < 0) return -x; else return x; } bool Work() { memset(b, 0, sizeof(b)); for (int i = 0; i < n; ++i) { for (int j = 0; j < 30; ++j) { if (a[i] & 1) ++b[j]; a[i] ...
### Prompt Develop a solution in Cpp to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; const double EPS = 1e-9; const double PI = acos(-1); const int N = (int)1e6 + 7; const int MOD = (int)1e9 + 7; int n, m, k; int win[111]; char a[111][111]; int cnt[10]; int main() { cin >> n >> m >> k; for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { ...
### Prompt Your task is to create a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the ...
#include <bits/stdc++.h> using namespace std; const int maxn = 100; int n, m, k, a[maxn]; char s[maxn + 1]; bool win_r, win_g; int main(void) { scanf("%d%d%d", &n, &m, &k); for (int i = 0; i < n; ++i) { scanf("%s", s); if (count(s, s + m, 'R') && count(s, s + m, 'G')) { a[i] = abs(find(s, s + m, 'R') ...
### Prompt In Cpp, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> int n, m, k; int ans[13]; char ch[107]; int tmp, vf, vs, vv, vt, flag = 0; int main() { scanf("%d%d%d", &n, &m, &k); k++; for (int i = 0; i < n; ++i) { scanf("%s", ch); vv = vt = tmp = 0; for (int i = 0; i < m; ++i) { if (ch[i] == '-') { if (tmp) ++vv; } ...
### Prompt Your task is to create a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the ...
#include <bits/stdc++.h> using namespace std; void sc(char& c) { char temp[4]; scanf("%s", temp); c = temp[0]; } struct debugger { template <typename T> debugger& operator,(const T& v) { cerr << v << " "; return *this; } } dbg; int testnum; int R, C, K; void preprocess() {} void solve() {} bool inpu...
### Prompt Create a solution in Cpp for the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ...
#include <bits/stdc++.h> using namespace std; const int MAXN = 1111; const int INF = 0x7f7f7f7f; int cases; int n, m, k; vector<int> g; int cnt[10]; int main() { string buf; cin >> n >> m >> k; bool fi = 0, se = 0; for (int i = 0; i < n; i++) { cin >> buf; int posfi = -1, posse = -1, flag = 0; for (...
### Prompt Please formulate a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; const int N = 100 + 5, LOG = 11; char t[N]; vector<int> gap; int sum[LOG], n, m, k; inline void add(int v) { for (int i = 0; i < LOG; i++) if (v >> i & 1) sum[i]++, sum[i] %= (k + 1); } int main() { bool aonly = 0, bonly = 0; scanf("%d%d%d", &n, &m, &k); for (in...
### Prompt Your challenge is to write a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, k; scanf("%d%d%d", &n, &m, &k); ++k; int a[8]; int b[] = {0, 0}; memset(a, 0, sizeof(a)); int i, j; for (i = (0); i < (n); ++i) { char buf[128]; scanf("%s", buf); int x[] = {-1, -1, -1}; for (j = (0); j < (m); ++j) { ...
### Prompt Please provide a cpp coded solution to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, m, k; cin >> n >> m >> k; vector<int> counter(10); bool r_win = false, g_win = false; for (int i = 0; i < (n); i++) { string s; cin >> s; int ri = s.find('R'); ...
### Prompt Your challenge is to write a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; template <typename T, typename U> inline void smin(T &a, U b) { if (a > b) a = b; } template <typename T, typename U> inline void smax(T &a, U b) { if (a < b) a = b; } int power(int a, int b, int m, int ans = 1) { for (; b; b >>= 1, a = 1LL * a * a % m) if (b & 1)...
### Prompt Your challenge is to write a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; int32_t main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.precision(10); int n; cin >> n; int m; cin >> m; int k; cin >> k; vector<string> a(n); for (int o = 0; o < n; o++) { cin >> a[o]; } if (m == 1) cout << "Second\n"; else { ...
### Prompt In CPP, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> using namespace std; const int MAXN = -1; int n, m, k; bool S, D; vector<int> NIM; int C[15]; bool solvenim() { for (int i = (0); i < (int)(10); i++) C[i] = 0; for (int i = (0); i < (int)(NIM.size()); i++) { int t = NIM[i]; for (int j = (0); j < (int)(10); j++) { if (t % 2) C[...
### Prompt Create a solution in Cpp for the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, k; scanf("%d%d%d", &n, &m, &k); vector<int> row; bool chk1 = false, chk2 = false; for (int i = 0; i < n; i++) { char field[101]; scanf("%s", field); int x = -1, y = -1, cnt = 0; for (int j = 0; j < m; j++) { if (field[j...
### Prompt Create a solution in cpp for the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ...
#include <bits/stdc++.h> using namespace std; int N, M, K, o, flagG, flagR, pG, pR, pK, flag; char st[105]; int sm[105], a[105]; int main() { scanf("%d %d %d", &N, &M, &K); flagG = 0, flagR = 0; for (int i = 1; i <= N; i++) { scanf("%s", st); pG = pR = pK = -1; for (int j = 0; j < M; j++) { if (...
### Prompt Generate a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; bool state[110]; string line[110]; vector<pair<char, int> > v[110]; int main() { int n, m, k; cin >> n >> m >> k; for (int i = 1; i <= n; i++) { for (int j = 1; j <= k && i - j >= 0; j++) { state[i] = state[i] || (state[i - j] ^ 1); } } bool alwayR =...
### Prompt Please provide a Cpp coded solution to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; template <typename T, typename U> inline void smin(T &a, const U &b) { if (a > b) a = b; } template <typename T, typename U> inline void smax(T &a, const U &b) { if (a < b) a = b; } char s[101]; int num[7]; int main() { int n, m, k; scanf("%d %d %d", &n, &m, &k); ...
### Prompt Generate a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; const int N = 105, H = 10; int n, m, kk, a[N], b1, b2, ss[N]; char mp[N][N]; int main() { scanf("%d%d%d", &n, &m, &kk); for (int i = 1; i <= n; i++) { scanf("%s", mp[i] + 1); int s1 = 0, s2 = 0, t1 = 0, t2 = 0; for (int j = 1; j <= m; j++) { if (mp[i][...
### Prompt Construct a Cpp code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; const int MAXN = 105; char Mp[MAXN][MAXN]; bool notLostF, notLostS, mustLostF[MAXN], mustLostS[MAXN], gameStart = false, isF, isS, isPiece; int D[MAXN], N, M, K, SG[105], A[105]; inline void getSG(int X) { A[0] = ...
### Prompt Please formulate a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; const char ans[][10] = {"Draw", "First", "Second"}; char a[110][110]; vector<int> b; bool check(int K) { int f[10] = {0}; for (int i = 0; i < b.size(); i++) for (int j = 0; j < 8; j++) if (b[i] >> j & 1) f[j]++; for (int i = 0; i < 8; i++) if (f[i] % (K ...
### Prompt Develop a solution in cpp to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; char a[105][105]; int b[105], M, N, K; int Rapp = 0, Gapp = 0, Rdraw = 0, Gdraw = 0, First = 0; void Return(int x) { if (x == 0) puts("Draw"); if (x == 1) puts("First"); if (x == 2) puts("Second"); exit(0); } int main() { scanf("%d%d%d", &M, &N, &K); if (N == 1)...
### Prompt Generate a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> namespace patch { template <typename T> std::string to_string(const T& n) { std::ostringstream stm; stm << n; return stm.str(); } } // namespace patch using namespace std; int main() { int N, M, K; int arr[1000] = {}, idx = 0; cin >> N >> M >> K; bool ch1, ch2; ch1 = ch2 = fals...
### Prompt Your challenge is to write a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; const int maxn = 105, hBit = 7; int n, m, k, p[maxn][hBit]; char line[maxn]; void binary(int n, int* bin) { for (int i = 0; n > 0; i++, n >>= 1) bin[i] = n & 1; } int main() { cin >> n >> m >> k; int inf1 = 0, inf2 = 0; for (int i = 0, t1, t2; i < n; i++) { cin ...
### Prompt Generate a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> char mp[101][101]; int n, m, k, g[101], r[101], d[101], a[20], cnt[2], win[2]; int main() { scanf("%d%d%d", &n, &m, &k); if (m == 1) return puts("Second"), 0; if (m == 2) { for (int i = 1; i <= n; i++) { scanf("%s", mp[i] + 1); if (mp[i][1] == 'G' && mp[i][2] == '-') win[0...
### Prompt Please create a solution in cpp to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int n, m, k; cin >> n >> m >> k; int d[102] = {0}; priority_queue<int> q; bool r = 0, g = 0; for (int i = 0; i < n; i++) { string s; cin >> s; int fg = s.find('G'); int fr = s.find('R'); i...
### Prompt Please provide a CPP coded solution to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; template <typename T, typename U> inline void smin(T &a, const U &b) { if (a > b) a = b; } template <typename T, typename U> inline void smax(T &a, const U &b) { if (a < b) a = b; } char s[101]; int num[7]; int main() { int n, m, k; scanf("%d %d %d", &n, &m, &k); ...
### Prompt Construct a CPP code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; int n, m, k; string s; bool notL1 = false, notL2 = false, w1 = false, w2 = false; int main() { cin >> n >> m >> k; vector<int> val(0); int tot = 0; for (int i = 0; i < n; ++i) { cin >> s; vector<int> R(0), G(0); for (int i = 0; i < m; ++i) { if (s[...
### Prompt Construct a cpp code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; template <typename T, typename U> inline void smin(T &a, U b) { if (a > b) a = b; } template <typename T, typename U> inline void smax(T &a, U b) { if (a < b) a = b; } int n, m, k, i, j, R, G, id[2], o, d[11]; char s[110][110]; int main() { scanf("%d %d %d", &n, &m, &...
### Prompt Generate a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; int n, m, k, c[10], r, g, rr, gg, fl; char s[233]; int main() { scanf("%d%d%d", &n, &m, &k); for (int i = 1; i <= n; i++) { scanf("%s", s + 1); r = g = fl = 0; for (int j = 1; j <= m; j++) if (s[j] == 'G') g = j; else if (s[j] == 'R') ...
### Prompt Your challenge is to write a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> int i, j, n, m, k; int myabs(int a) { return a < 0 ? -a : a; } int getit(char* s) { int i, a = -1, b = -1; bool empty = 0; for (i = 0; s[i]; i++) { if (s[i] == '-') { empty = true; continue; } if (s[i] == 'G') { a = i; } if (s[i] == 'R') { b = i...
### Prompt In CPP, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> using namespace std; template <typename T, typename U> inline void smin(T &a, const U &b) { if (a > b) a = b; } template <typename T, typename U> inline void smax(T &a, const U &b) { if (a < b) a = b; } char s[101]; int num[8]; int main() { int n, m, k; scanf("%d %d %d", &n, &m, &k); ...
### Prompt Generate a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; const double PI = acos(-1.0); const double eps = 1E-7; const int oo = 123456789; int a[3]; vector<int> v; int k; int hzz() { for (int w = 0; w <= 20; w++) { int tmp = 0; for (int i = 0; i < v.size(); i++) if (v[i] & (1 << w)) tmp++; if (tmp % (k + 1)) re...
### Prompt Construct a CPP code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; char a[200][200]; int ans[10]; int main() { int i, j, m, n, k, b1, b2, g1, g2, em, tmp; scanf("%d%d%d", &m, &n, &k); for (i = 0; i < m; i++) scanf("%s", a[i]); g1 = 0; g2 = 0; memset(ans, 0, sizeof(ans)); for (i = 0; i < m; i++) { b1 = -1; b2 = -1; ...
### Prompt Develop a solution in cpp to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, k, i, j; cin >> n >> m >> k; char bf[n][m]; bool greenWins = false, redWins = false; for (i = 0; i < n; i++) for (j = 0; j < m; j++) cin >> bf[i][j]; int piles[n], kk = 0; if (m == 1) { cout << "Second"; return 0; } for (...
### Prompt Your task is to create a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the ...
#include <bits/stdc++.h> using namespace std; int col, row, k, b[101]; char s[101]; bool win() { for (int j = 0, sum; j < 7; j++) { sum = 0; for (int i = 0; i < row; i++) if ((1 << j) & b[i]) sum++; if (sum % (k + 1)) return true; } return false; } int main() { bool gF = false, rF = false; c...
### Prompt Your task is to create a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the ...
#include <bits/stdc++.h> using namespace std; const char road[1000] = "C:\\data\\"; char roadnum[1000] = ""; char roadin[1000] = ""; char roadout[1000] = ""; void writeIntoFile(char num[]) { strcpy(roadnum, num); strcpy(roadin, road); strcat(roadin, roadnum); strcat(roadin, "."); strcpy(roadout, roadin); st...
### Prompt Please provide a Cpp coded solution to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; const int K = 100; const int KK = K + 100; char maze[KK][KK]; bool FFree, SFree; int sumList[KK]; void checkFree(int n, int m) { int i, j, k; char c; for (i = 0; i < n; i++) { c = 'x'; k = 0; for (j = 0; j < m; j++) { if (maze[i][j] != '-') { ...
### Prompt Your challenge is to write a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; int i, j, k, l, n, m, d[120], R, G, br, bg, x, y; char c[120]; void add(int x) { for (int i = 0; i <= 10; ++i) d[i] += x % 2, x /= 2; } int main() { scanf("%d%d%d", &n, &m, &k); R = G = 0; for (i = 1; i <= n; ++i) { scanf("%s", c + 1); x = y = 0; br = bg...
### Prompt Create a solution in Cpp for the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, k; cin >> n >> m >> k; string x[n]; int cnt[10] = {0}; bool f1 = 0, f2 = 0, z1 = 0, z2 = 0; for (int i = 0; i < n; i++) { cin >> x[i]; int a = x[i].find('R'), b = x[i].find('G'); if (x[i] == "GG") z1 = 1; else if (x[i...
### Prompt Generate a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; int a[200]; int b[200]; int n, m, num, s, t; char st[200]; int Abs(int x) { if (x < 0) return -x; else return x; } bool Work() { memset(b, 0, sizeof(b)); for (int i = 0; i < n; ++i) { for (int j = 0; j < 30; ++j) { if (a[i] & 1) ++b[j]; a[i] ...
### Prompt Please provide a Cpp coded solution to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; int n, m, k; int playNim(vector<int> &piles) { int nimSum = 0, newVal; for (int i = piles.size() - 1; i >= 0; --i) { newVal = nimSum ^ piles[i]; if (piles[i] > newVal && (piles[i] - newVal) <= k) { piles[i] = newVal; return !playNim(piles); } }...
### Prompt Please formulate a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> int n, m, k; int ans[13]; char ch[107]; int tmp, vf, vs, vv, vt, flag = 0; int main() { scanf(" %d %d %d", &n, &m, &k); ++k; for (int i = 0; i < n; ++i) { scanf(" %s", ch); vv = vt = tmp = 0; for (int i = 0; i < m; ++i) { if (ch[i] == '-') { if (tmp) ++vv; ...
### Prompt In CPP, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> using namespace std; int main() { long long n, m, k; cin >> n >> m >> k; char arr[n][m]; long long cnt[n]; bool test105 = 1; memset(cnt, 0, sizeof(cnt)); for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) { cin >> arr[i][j]; if (arr[i][j] != '-') cnt[i...
### Prompt Your challenge is to write a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; template <typename C> void MA(C& a, C b) { if (a < b) a = b; } template <typename C> void MI(C& a, C b) { if (a > b) a = b; } int n, m, k; char z[1010]; void draw() { puts("Draw"); exit(0); } void win1() { puts("First"); exit(0); } void win2() { puts("Second")...
### Prompt Construct a Cpp code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, k; cin >> n >> m >> k; vector<int> a; bool infg = false; bool infr = false; bool anyg = false; bool anyr = false; for (int i = (0); i < (int)(n); i++) { string s; cin >> s; int ir = -1, ig = -1, iv = -1; for (int j = (0...
### Prompt Your challenge is to write a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; template <class T> inline void remax(T& A, T B) { if (A < B) A = B; } template <class T> inline void remin(T& A, T B) { if (A > B) A = B; } string ToString(long long num) { string ret; bool neg = false; if (num < 0) num *= ~0, neg = true; do { ret += ((num %...
### Prompt Generate a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, k; while (cin >> n >> m >> k) { vector<int> a; bool infg = false; bool infr = false; bool anyg = false; bool anyr = false; for (int i = (0); i < (int)(n); i++) { string s; cin >> s; int ir = -1, ig = -1, i...
### Prompt Construct a cpp code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cout << *i << " "; cout << endl; } template <class T> void chmin(T &t, T f) { if (t > f) t = f; } template <class T> void chmax(T &t, T f) { if (t < f) t = f; } int in() { int x; scanf("%d", &x); ...
### Prompt Create a solution in CPP for the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ...
#include <bits/stdc++.h> using namespace std; static const int INF = 500000000; template <class T> void debug(T a, T b) { for (; a != b; ++a) cerr << *a << ' '; cerr << endl; } int h, w, k; char tmp[105]; int dif[105]; int bits[32]; int main() { scanf("%d%d%d", &h, &w, &k); int free1 = 0, free2 = 0; int n = 0...
### Prompt Your challenge is to write a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; int nimksum(vector<int> const &nimbers, int k) { int s = 0; for (int i = 0; i < 10; i++) { int count = 0; for (auto n : nimbers) count += ((n >> i) & 1); if (count % (k + 1) != 0) s = s | (1 << i); } return s; } int main() { int n, m, k; cin >> n >> ...
### Prompt Create a solution in CPP for the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ...
#include <bits/stdc++.h> using namespace std; int i, j, k, l, n, m, s, an, sum, tot, len, K, r, MA, MI, M, s1, s2, L, R; const int N = 110; char a[N][N]; int g[N]; int main() { scanf("%d%d%d", &n, &m, &K); if (m == 1) { printf("Second\n"); return 0; } for (int i = 1; i <= n; i++) scanf("%s", a[i] + 1); ...
### Prompt Your challenge is to write a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; int n, m, k; const int maxN = 105; int d[maxN]; char a[maxN][maxN]; int sz = 0; signed main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); srand(228); cin >> n >> m >> k; bool gC = false, cC = false; bool hasC = false; bool hasG = false; for (int i ...
### Prompt Please formulate a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, k; cin >> n >> m >> k; vector<string> s(n); for (int i = 0; i < n; i++) cin >> s[i]; vector<int> v(n, 0); vector<int> vr(32, 0); bool b6 = true; for (int i = 0; i < n; i++) { auto it = s[i].find("G"); auto it2 = s[i].find("R");...
### Prompt Generate a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; const int N = 111; char a[N][N]; int n, m, k, fir, sec, fl[N], cnt[N]; int main() { cin >> n >> m >> k; for (int i = 1; i <= n; i++) scanf("%s", a[i] + 1); for (int j = 1; j <= n; j++) { int uo = 0, u0 = 0, la = 0, wh = 0; for (int i = 1; i <= m; i++) { ...
### Prompt Your challenge is to write a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> char s[1005]; int n, m, k, ans[23], G, R, has, oG, oR; int main(void) { scanf("%d%d%d", &n, &m, &k); for (int i = 1; i <= n; ++i) { has = G = R = 0; scanf("%s", s + 1); for (int j = 1; j <= m; ++j) if (s[j] == '-') has = 1; else if (s[j] == 'G') G = j...
### Prompt Create a solution in Cpp for the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ...
#include <bits/stdc++.h> using namespace std; const int N = 110; char s[N][N]; int w[N], sum[10]; int main() { int n, m, k; scanf("%d%d%d", &n, &m, &k); bool flag1 = false, flag2 = false; for (int i = 1; i <= n; i++) { scanf("%s", s[i] + 1); int t1 = 0, t2 = 0; for (int j = 1; j <= m; j++) if ...
### Prompt Your task is to create a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the ...
#include <bits/stdc++.h> using namespace std; inline long long read() { char c = getchar(); long long fla = 1, k = 0; while (c < '0' || c > '9') { if (c == '-') fla = -1; c = getchar(); } while (c >= '0' && c <= '9') { k = (k << 3) + (k << 1) + (c & 15); c = getchar(); } return fla * k; } ...
### Prompt Your task is to create a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the ...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, z; bool wing = 0, winr = 0; cin >> n >> m >> z; char a[n + 5][m + 5]; for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) cin >> a[i][j]; short s[105]; memset(s, 0, sizeof(s)); int ans = 0; bool r = 0, g = 0; for (int i = 0...
### Prompt Please formulate a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int absv(int x) { return (x > 0 ? x : -x); } bool win(vector<int>& gaps, int k) { for (int i = 0; i < 7; i++) { int sum = 0; for (int j = 0; j < gaps.size(); j++) sum += ((gaps[j] >> i) & 1); if (sum % (k + 1) != 0) return true; } return false; } int main(...
### Prompt Generate a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; const int MAXN = 110; string row[MAXN]; int main() { int n, m, k; cin >> n >> m >> k; for (int i = (int)0; i < (int)n; i++) cin >> row[i]; vector<int> acum(32); vector<int> pila; int hay_shrek = false, hay_burro = false; for (int i = (int)0; i < (int)n; i++) {...
### Prompt In Cpp, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> using namespace std; #pragma comment(linker, "/STACK:255000000") bool firstout = 1; template <class T> void minn(T &a, T b) { if (b < a) a = b; } template <class T> void maxx(T &a, T b) { if (a < b) a = b; } int madd(int &a, int b) { a += b; if (a >= 1000000009) a -= 1000000009; retur...
### Prompt Your task is to create a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the ...
#include <bits/stdc++.h> #pragma comment(linker, "/STACK:64000000") using namespace std; const double pi = 3.1415926535897932384626433832795; double eps = 1e-9; char ch[1 << 20]; inline string gs() { scanf("%s", ch); return string(ch); } inline string gl() { gets(ch); return string(ch); } inline int gi() { in...
### Prompt Construct a cpp code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; char game[110][110]; int main() { int n, m, k; cin >> n >> m >> k; vector<int> v; int w2 = 0, w1 = 0, f = 0, s = 0; for (int i = 0; i < n; i++) { int r = 0, g = 0, d = 0; for (int j = 0; j < m; j++) { cin >> game[i][j]; if (game[i][j] == 'R') ...
### Prompt Please create a solution in Cpp to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int db[7], n, m, k; bool csa, csb; string s; int main() { ios_base::sync_with_stdio(false); cin >> n >> m >> k; for (int i = 1; i <= n; i++) { cin >> s; int pa = -1, pb = -1; for (int i = 0; i < m; i++) { if (s[i] == 'R') pa = i; if (s[i] == 'G...
### Prompt Develop a solution in cpp to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> double const PI = 4 * atan(1.0); using namespace std; int n, m, k; string s[111]; int xuly(string u) { int num = 0, numG = 0, numR = 0, vitriG = 0, vitriR = 0; for (int i = 0; i < m; i++) { if (u[i] == 'G') { num++; numG++; vitriG = i; } else if (u[i] == 'R') { ...
### Prompt Generate a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; inline long long getint() { long long _x = 0, _tmp = 1; char _tc = getchar(); while ((_tc < '0' || _tc > '9') && _tc != '-') _tc = getchar(); if (_tc == '-') _tc = getchar(), _tmp = -1; while (_tc >= '0' && _tc <= '9') _x *= 10, _x += (_tc - '0'), _tc = getchar();...
### Prompt Your challenge is to write a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; inline int re_ad() { int x = 0, f = 1; char ch = getchar(); while (ch > '9' || ch < '0') { if (ch == '-') f = -1; ch = getchar(); } while (ch >= '0' && ch <= '9') x = x * 10 + (ch ^ 48), ch = getchar(); return x * f; } int n, m, k; int base[30]; int num[...
### Prompt Generate a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, k, i, j; cin >> n >> m >> k; char bf[n][m]; bool greenWins = false, redWins = false; for (i = 0; i < n; i++) for (j = 0; j < m; j++) cin >> bf[i][j]; int piles[n], kk = 0; if (m == 1) { cout << "Second"; return 0; } for (...
### Prompt Create a solution in CPP for the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ...
#include <bits/stdc++.h> using namespace std; inline void setIO(string a) {} int n, m, k, danG, danR, a[10005]; char s[10005]; inline void In(int x) { if (x < 0) return; for (int i = (0); i <= (9); i++) a[i] += (x >> i) & 1; } int main() { scanf("%d%d%d", &n, &m, &k); for (int i = (1); i <= (n); i++) { scan...
### Prompt Generate a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> using namespace std; int i, j, k, l, n, m, d[120], R, G, br, bg, x, y; char c[120]; void add(int x) { for (int i = 0; i <= 10; ++i) d[i] += x % 2, x /= 2; } int main() { scanf("%d%d%d", &n, &m, &k); R = G = 0; for (i = 1; i <= n; ++i) { scanf("%s", c + 1); x = y = 0; br = bg...
### Prompt Construct a cpp code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; int n, m, k; char s[105][105]; bool fst = false, snd = false; int pos[105][2]; vector<int> v; void init() { scanf("%d%d%d", &n, &m, &k); for (int i = 0; i < n; i++) { scanf("%s", s[i]); bool a = false, b = false, c = false; for (int j = 0; j < m; j++) { ...
### Prompt Your challenge is to write a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; vector<int> dist; char s[105][105]; int moveLine[2]; int sum[105]; int n, m, k; int notNear, lineWithDifferentSoldiers; int getDist(int ind) { int i; int pred = -1; for (i = 0; i < m; i++) { if (s[ind][i] != '-') { if (pred == -1) pred = i; els...
### Prompt Please create a solution in cpp to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; const int kBits = 7; bool check(const vector<int> &piles, const int k) { for (int i = 0; i < kBits; ++i) { int sum = 0; for (int j = 0; j < piles.size(); ++j) if (piles[j] & 1 << i) ++sum; if (sum % (k + 1)) return true; } return false; } int main() ...
### Prompt In CPP, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> #pragma comment(linker, "/STACK:1024000000,1024000000") using namespace std; const int inf = 0x3f3f3f3f; const long long INF = 1e18; template <typename T> void read(T &x) { x = 0; int s = 1, c = getchar(); for (; !isdigit(c); c = getchar()) if (c == '-') s = -1; for (; isdigit(c); c...
### Prompt Generate a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ga...
#include <bits/stdc++.h> const int N = 100; int n, m, k; char map[N][N + 1]; std::vector<int> positions[N]; const int M = 30; int sg[M]; int main() { scanf("%d%d%d", &n, &m, &k); for (int i = 0; i < n; ++i) { scanf("%s", map[i]); for (int j = 0; j < m; ++j) { if (map[i][j] != '-') { positions[...
### Prompt In CPP, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> #pragma comment(linker, "/STACK:10000000") const long double LDINF = 9128739847123.00; const long double eps = 1e-9; const int inf = 1 << 28; const long double pi = fabsl(atan2l(0.0, -1.0)); using namespace std; int n, m, k; int pos[123][2]; void load() { cin >> n >> m >> k; int c; for (i...
### Prompt Please create a solution in CPP to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; template <class C> void mini(C& a4, C b4) { a4 = min(a4, b4); } template <class C> void maxi(C& a4, C b4) { a4 = max(a4, b4); } template <class T1, class T2> ostream& operator<<(ostream& out, pair<T1, T2> pair) { return out << "(" << pair.first << ", " << pair.second ...
### Prompt Develop a solution in cpp to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; const int N = 110; int n, m, k, a[N]; char c[N][N]; int main() { scanf("%d%d%d", &n, &m, &k); bool fg = false, fr = false; for (int i = 1, g, r, pg, pr; i <= n; i++) { scanf("%s", c[i] + 1); g = r = pg = pr = 0; for (int j = 1; j <= m; j++) { if (c[i...
### Prompt Please formulate a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> std::mt19937 rng( (int)std::chrono::steady_clock::now().time_since_epoch().count()); int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); int n, m, k; std::cin >> n >> m >> k; int msk = 0; std::vector<int> got(20, 0); while (n--) { std::string str; s...
### Prompt Develop a solution in Cpp to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int main() { int n, m, k; scanf("%d%d%d", &n, &m, &k); bool ron = 0, gon = 0; string s; int sum[8] = {0}; while (n--) { cin >> s; int r = -1, g = -1, d = -1; for (int i = 0; i < m; i++) { if (s[i] == 'R') r = i; else if (s[i] == '...
### Prompt Your challenge is to write a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; char s[105][105]; int a[105], z; bool check(int k) { int b[50], i, j; memset(b, 0, sizeof(b)); for (i = 0; i < z; i++) { for (j = 0; a[i] > 0; j++) { b[j] += a[i] % 2; a[i] /= 2; } } for (i = 0; i < 50; i++) { if (b[i] % (k + 1) != 0) retur...
### Prompt Construct a CPP code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; inline int read() { int x = 0, f = 1; char c = getchar(); for (; !isdigit(c); c = getchar()) if (c == '-') f = -1; for (; isdigit(c); c = getchar()) x = x * 10 + c - '0'; return x * f; } const int MAXN = 100010; const int INF = 2147483600; int N, M, K; int f[1...
### Prompt In Cpp, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> using namespace std; inline int read() { int f = 1, ans = 0; char c = getchar(); while (c < '0' || c > '9') { if (c == '-') f = -1; c = getchar(); } while (c >= '0' && c <= '9') { ans = ans * 10 + c - '0'; c = getchar(); } return f * ans; } const int MAXN = 111; in...
### Prompt In cpp, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> using namespace std; int X[100]; char s[256]; int main(void) { int t, j, i, n, m, k, r = 0; bool G = false, C = false; cin >> n >> m >> k; for (i = 0; i < n; i++) { cin >> s; for (j = 0; j < m && s[j] == '-'; j++) ; if (j < m) { for (t = j + 1; t < m && s[t] == '...
### Prompt Construct a Cpp code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; const double eps = 1e-10; const int oo = ~0u >> 2, mo = (int)1e9 + 7; const int mn = 110; int a[mn]; int n, m, k; bool ff[3]; int main() { cin >> n >> m >> k; if (m == 1) { printf("Second\n"); return 0; } for (int i = 1; i <= n; ++i) { string S; do {...
### Prompt Your challenge is to write a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...
#include <bits/stdc++.h> using namespace std; int n, m, k; char t[110][110]; int main() { scanf("%d %d %d", &n, &m, &k); for (int i = 0; i < n; i++) scanf(" %s", t[i]); if (m == 1) { puts("Second"); return 0; } bool green = false, red = false; vector<int> s; for (int i = 0; i < n; i++) { int x...
### Prompt Please create a solution in Cpp to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, m, k, l; cin >> n >> m >> k; k++; int a = 1, b = 0; char arr[n][m]; int ar[33] = {}; map<char, int> me; for (int i = 0; i < n; i++) { int x = -1, y = -1, q = 0; for (int j = 0; j < m; ...
### Prompt Develop a solution in Cpp to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int n, m, k; int f(vector<int> st) { for (int i = 0; i <= 6; ++i) { int s = 0; for (int j = 0; j < st.size(); ++j) if ((st[j] & (1 << i)) > 0) ++s; if (s % (k + 1) != 0) return 1; } return 2; } int main() { ios_base::sync_with_stdio(0); cin >> n ...
### Prompt In CPP, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int h, w, k; cin >> h >> w >> k; int gfree = 0, rfree = 0; vector<int> grundy(10, 0); for (int i = 0; i < h; i++) { string s; cin >> s; int g = -1, r = -1, dash = -1; for (int j = 0; j < w; j++)...
### Prompt Construct a CPP code solution to the problem outlined: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring ca...
#include <bits/stdc++.h> using namespace std; const double pi = acos(-1.0); int n, m, p; int a[100 + 10]; char str[100 + 10]; int main() { int i, j, k, t, l, t1, t2; bool flag1 = 0, flag2 = 0; scanf("%d%d%d", &n, &m, &p); ++p; for (i = 1; i <= n; ++i) { scanf("%s", str + 1); t1 = t2 = 0; for (j = ...
### Prompt Your task is to create a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the ...
#include <bits/stdc++.h> char tmp[110]; int ans[20]; int main() { int n, m, k; scanf("%d%d%d", &n, &m, &k); int fg = 0, fb = 0; int cnt = 0; for (int i = 0; i < n; i++) { scanf("%s", tmp); int l = -1, r; int mg = 0, mb = 0; for (int j = 0; j < m; j++) { if (tmp[j] == 'G') { mg++;...
### Prompt Develop a solution in cpp to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; const double eps = 1e-8; const double pi = acos(-1.0); int S[100], n, m, k; char ma[1100][1100]; void add(int a) { int tot = 0; while (a) { S[tot] = (S[tot] + a % 2) % (k + 1); tot++; a /= 2; } } bool pos() { for (int i = 0; i < 50; i++) if (S[i] != ...
### Prompt Develop a solution in Cpp to the problem described below: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; char buf[1005]; int main() { int n, m, k; scanf("%d%d%d", &n, &m, &k); bool a1 = false; bool a2 = false; vector<int> moo; for (int i = 0; i < n; ++i) { scanf("%s", buf); bool b1 = false, b2 = false, b3 = false, b4 = false; int fs = -1, ls = -1; f...
### Prompt In CPP, your task is to solve the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card...
#include <bits/stdc++.h> using namespace std; bool solo(string s, char c) { bool hayc = false; for (int i = 0; i < int(s.size()); i++) { if (s[i] != c and s[i] != '-') return false; if (s[i] == c) hayc = true; } return hayc; } bool sinpunto(string s) { for (int i = 0; i < int(s.size()); i++) if (s...
### Prompt Please create a solution in Cpp to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int n, m, k; vector<int> piles; vector<int> bits(8, 0); string line; void sum_bits(int x) { for (int p = 0; p < 8; ++p) { if (x & (1 << p)) ++bits[p]; } } bool find_winner() { for (auto pile : piles) { sum_bits(pile); } for (auto sum : bits) { if (sum ...
### Prompt Please create a solution in cpp to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; const int N = 105; int n, m, kk, dis[N]; char s[N][N]; int main() { ios::sync_with_stdio(false); cin >> n >> m >> kk; if (m == 1) { puts("Second"); return 0; } for (int i = 1; i <= n; i++) cin >> (s[i] + 1); int cnt1 = 0, cnt2 = 0; bool ok = 0; for (...
### Prompt Create a solution in Cpp for the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring card ...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n, m, k, i, j, free_g = 0, free_r = 0, g, r, blank, nim[10] = {}, win = 0; string str; vector<int> v; cin >> n >> m >> k; for (i = 0; i < n; i++) { cin >> str; g = r = -1; blank = 0;...
### Prompt Please formulate a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; int n, m, k; char s[103]; vector<int> a; int get() { int f = 0, v = 0; char ch; while (!isdigit(ch = getchar())) if (ch == '-') break; if (ch == '-') f = 1; else v = ch - 48; while (isdigit(ch = getchar())) v = v * 10 + ch - 48; if (f == 1) ret...
### Prompt Please formulate a Cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> using namespace std; const double pi = acos(-1.0); const int max_r = 20; int sum[max_r], n, m, k; char tmp[1000]; int main() { scanf("%d%d%d", &n, &m, &k); if (m == 1) { printf("Second\n"); return 0; } bool rdraw = false, gdraw = false, r = false, g = false; for (int i = 0; i ...
### Prompt Please formulate a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the boring...
#include <bits/stdc++.h> const int inf = 1000000009; const double pi = acos(-1.0); using namespace std; int i, j, k, m, n, r, g; vector<int> v; int lost() { for (int i = 0; i < 15; i++) { int cnt = 0; for (int j = 0; j < v.size(); j++) if (v[j] & (1 << i)) cnt++; if (cnt % (k + 1) != 0) return 0; ...
### Prompt Your task is to create a cpp solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit the ...
#include <bits/stdc++.h> using namespace std; char _; const int maxN = 100 + 5; const int mod = 1000 * 1000 * 1000 + 7; const int base = 701; const int SQ = 600; const int maxL = 20; char a[maxN][maxN]; int32_t main() { ios::sync_with_stdio(0); cin.tie(0); int n, m, k; cin >> n >> m >> k; for (int i = 0; i < ...
### Prompt Your challenge is to write a CPP solution to the following problem: Having learned (not without some help from the Codeforces participants) to play the card game from the previous round optimally, Shrek and Donkey (as you may remember, they too live now in the Kingdom of Far Far Away) have decided to quit ...