Submission #788779

#TimeUsernameProblemLanguageResultExecution timeMemory
788779TheOpChickenRed-blue table (IZhO19_stones)C++17
100 / 100
83 ms2252 KiB
#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);
		vector<vector<char> > grid(n, vector<char>(m, '+'));

		cout << can + opt << endl;
      
		for (int i = 0; i < n; i++){
			int row_need = (i < opt ? m/2+1 : 0);
			multiset<pair<int, int> > ms;
			for (int j = 0; j < can; j++) ms.insert(make_pair(count[j], j));

			for (int j = 0; j < min(can, m-row_need); j++){
				pair<int, int> a = *ms.begin(); ms.erase(ms.begin());
				grid[i][a.second] = '-';
				count[a.second]++;
			}
		}

		for (int i = 0; i < n; i++){
			for (int j = 0; j < m; j++) cout << grid[i][j];
			cout << endl;
		}
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...