Submission #961036

# Submission time Handle Problem Language Result Execution time Memory
961036 2024-04-11T12:29:32 Z pcc Red-blue table (IZhO19_stones) C++17
17 / 100
486 ms 1456 KB
#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define pll pair<ll,ll>
#define pii pair<int,int>
#define fs first
#define sc second
#define tlll tuple<ll,ll,ll>

int ans[22][22],C[22][22];
int row[22],col[22];

void calc(int r,int c){
	int big = 0,cnt = 0;
	for(int i = 0;i<(1<<(r*c));i++){
		for(int j = 0;j<r;j++)row[j] = 0;
		for(int j = 0;j<c;j++)col[j] = 0;
		for(int j = 0;j<r;j++){
			for(int k = 0;k<c;k++){
				if(i&(1<<(j*c+k)))row[j]++,col[k]++;
			}
		}
		int tc = 0;
		for(int j = 0;j<r;j++){
			tc += (row[j]>c-row[j]);
		}
		for(int j = 0;j<c;j++){
			tc += (r-col[j]>col[j]);
		}
		if(tc>cnt)cnt = tc,big = i;
	}
	ans[r][c] = cnt;
	C[r][c] = big;
}

void prep(){
	for(int i = 1;i<=5;i++){
		for(int j = 1;i*j<=20;j++)calc(i,j);
	}
	return;
}

void solve(int r,int c){
	string s[r];
	for(int i = 0;i<r;i++){
		for(int j = 0;j<c;j++){
			if(C[r][c]&(1<<(i*c+j)))s[i] += '+';
			else s[i] += '-';
		}
	}
	cout<<ans[r][c]<<'\n';
	for(auto &i:s)cout<<i<<'\n';
	return;
}

int main(){
	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	prep();
	int t;
	cin>>t;
	while(t--){
		int r,c;
		cin>>r>>c;
		solve(r,c);
	}
	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 481 ms 432 KB Output is correct
2 Correct 479 ms 436 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 482 ms 428 KB in the table A+B is not equal to 5
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 481 ms 432 KB Output is correct
2 Correct 479 ms 436 KB Output is correct
3 Incorrect 482 ms 428 KB in the table A+B is not equal to 5
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 486 ms 1368 KB in the table A+B is not equal to 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 482 ms 1456 KB in the table A+B is not equal to 6080008
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 481 ms 432 KB Output is correct
2 Correct 479 ms 436 KB Output is correct
3 Incorrect 482 ms 428 KB in the table A+B is not equal to 5
4 Halted 0 ms 0 KB -