# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
308767 | 2020-10-01T21:51:49 Z | nikatamliani | Red-blue table (IZhO19_stones) | C++14 | 2000 ms | 256 KB |
#include <bits/stdc++.h> using namespace std; int main() { int T = 1; cin >> T; while(T--) { int n, m, cntI = 0, best = 0; cin >> n >> m; // bool ans[n + 1][m + 1]; // memset(ans, 0, sizeof ans); // for(int i = 0; i <= n; ++i) { // int sum = i * (m / 2 + 1); // int cnt_less = m - sum % m; // int cnt_more = sum % m; // int less = sum / n; // int more = less + 1; // int rem = n * m - sum, now = i; // int can = (n - 1) / 2, have = n - can; // sum = max(0, sum - can * m); // now += m - (sum + have - 1) / have; // if(best < now) { // best = now, cntI = i; // } // } // int prev = 1; // for(int i = 1; i <= cntI; ++i) { // int cnt = (m + 1) / 2; // for(int j = prev; cnt--; j = (j == m ? 1 : j + 1)) { // prev = (j == m ? 1 : j + 1); // ans[i][j] = 1; // } // } // cout << best << '\n'; // for(int i = 1; i <= n; ++i) { // for(int j = 1; j <= m; ++j) { // if(ans[i][j]) { // cout << '+'; // } else { // cout << '-'; // } // } // cout << '\n'; // } int p = n * m, real_best = 0; for(int mask = 0; mask < (1 << p); ++mask) { vector < int > row(n, 0), col(m, 0); for(int i = 0; i < p; ++i) { if(mask >> i & 1) { ++row[i / m]; --col[i % m]; } else { --row[i / m]; ++col[i % m]; } } int cur = 0; for(int i = 0; i < n; ++i) { cur += row[i] > 0; } for(int i = 0; i < m; ++i) { cur += col[i] > 0; } real_best = max(real_best, cur); } cout << real_best << '\n'; } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2082 ms | 256 KB | Time limit exceeded |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2070 ms | 256 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2080 ms | 256 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |