답안 #788751

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
788751 2023-07-20T14:46:05 Z TheOpChicken Red-blue table (IZhO19_stones) C++17
17 / 100
54 ms 1316 KB
#include <bits/stdc++.h>
using namespace std;

bool possible(int i, int n, int m, int mid){
	int total = (n-i)*mid + i*min(mid, m-(m/2+1));
	return total >= mid*(n/2+1);
}

int find_can(int i, int n, int m){
	int l = 0, r = m, ans = 0;
	while(l <= r){
		int mid = (l+r)/2;
		if (!possible(i, n, m, mid)) r = mid-1;
		else{
			ans = mid;
			l = mid+1;
		}
	}

	return ans;
}

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

		int opt = 0, can = -1;
		for (int i = 0; i <= n; i++){
			int new_can = find_can(i, n, m);
			if (new_can+i > opt+can) opt = i, can = new_can;
		}

		vector<int> count(m, 0);

		cout << can + opt << endl;
		for (int i = 0; i < n; i++){
			int row_need = m/2 + 1;
			for (int j = 0; j < m; j++){
				if (i >= opt) cout << '-';
				else{
					if (row_need == m - j || count[j] == n/2 + 1){
						cout << '+';
						row_need--;
					}
					else{
						cout << '-';
						count[j]++;
					}
				}
			}

			cout << endl;
		}
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 296 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 212 KB in the table A+B is not equal to 28
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 296 KB Output is correct
3 Incorrect 5 ms 212 KB in the table A+B is not equal to 28
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 54 ms 1316 KB in the table A+B is not equal to 116
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 31 ms 1208 KB in the table A+B is not equal to 44
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 296 KB Output is correct
3 Incorrect 5 ms 212 KB in the table A+B is not equal to 28
4 Halted 0 ms 0 KB -