Submission #170225

# Submission time Handle Problem Language Result Execution time Memory
170225 2019-12-24T09:38:08 Z div2der Red-blue table (IZhO19_stones) C++14
0 / 100
44 ms 1912 KB
#include <iostream>
#include <set>
#include <map>
#include <algorithm>
using namespace std;

#define sz(s) (int)(s.size())
#define eb emplace_back
#define all(x) x.begin(), x.end()

const int N = 2e6;
const int NN = 4e3;

char a[NN][NN];

int c[N], r[N];

void solve(int n, int m) {
	if (n <= m) {	
		int need = (m / 2 + 1);
		int mx = n - (n / 2 + 1);
		int pos = 1;
		int ans = 0;
		for (int i = 1; i <= n; ++ i) {
			int cnt = 0;
			int rev = pos++;
			int res = 0;
			while(cnt <= m and r[i] < need) {
				++cnt;
				if (res == need)
					break;
				if (c[rev] < mx) {
					a[i][rev] = '+';
					c[rev]++;
					r[i]++;
					++res;
				}
				++rev;
				if (rev > m)
					rev = 1;
			}
			if (r[i] == need)
				++ans;
			if (cnt == m)
				if (res != need)
					break;
		}
		
		cout << m + ans << '\n';
		for (int i = 1; i <= n; ++ i) {
			for (int j = 1; j <= m; ++ j)
				cout << (a[i][j] != '+' ? '-' : '+');
			cout << '\n';
		}
		return;
	}
	else {
		int need = (n / 2 + 1);
		int mx = m - (m / 2 + 1);
		int pos = 1;
		int ans = 0;
		for (int i = 1; i <= m; ++ i) {
			int cnt = 0;
			int rev = pos++;
			int res = 0;
			while(cnt <= n and c[i] < need) {
				++cnt;
				if (res == need)
					break;
				if (r[rev] < mx) {
					a[rev][i] = '-';
					r[rev]++;
					c[i]++;
					++res;
				}
				++rev;
				if (rev > n)
					rev = 1;
			}
			if (c[i] == need)
				++ans;
			if (cnt == n)
				if (res != need)
					break;
		}
		cout << n + ans << '\n';
		for (int i = 1; i <= n; ++ i) {
			for (int j = 1; j <= m; ++ j)
				cout << (a[i][j] != '-' ? '+' : '-');
			cout << '\n';
		}
	}
}

int main () {	
	int t;
	cin >> t;
	while(t--) {
		int n, m;
		cin >> n >> m;
		solve(n, m);
	}

	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB in the table A+B is not equal to 5
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 504 KB in the table A+B is not equal to 7
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB in the table A+B is not equal to 5
# Verdict Execution time Memory Grader output
1 Incorrect 44 ms 1808 KB in the table A+B is not equal to 68
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 44 ms 1912 KB in the table A+B is not equal to 19
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB in the table A+B is not equal to 5