#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>
namespace S1{
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;
}
}
namespace S4{
void solve(int r,int c){
bool f = false;
if(r>c)f = true,swap(r,c);
vector<vector<int>> v(r,vector<int> (c,-1));
for(int i = 0;i<r/2;i++){
for(int j = 0;j<=c/2;j++)v[i][j] = v[r-1-i][c-1-j] = 1;
}
int cnt = 0;
cout<<r+c-1-(min(r,c)!=1)<<'\n';
if(f){
for(int i = 0;i<c;i++){
for(int j = 0;j<r;j++)cout<<(-v[j][i] == 1?'+':'-');
cout<<'\n';
}
}
else{
for(int i = 0;i<r;i++){
for(int j = 0;j<c;j++)cout<<(v[i][j] == 1?'+':'-');
cout<<'\n';
}
}
return;
}
}
int main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
S1::prep();
int t;
cin>>t;
while(t--){
int r,c;
cin>>r>>c;
if(r<=4&&c<=4)S1::solve(r,c);
else S4::solve(r,c);
}
return 0;
}
Compilation message
stones.cpp: In function 'void S4::solve(int, int)':
stones.cpp:68:7: warning: unused variable 'cnt' [-Wunused-variable]
68 | int cnt = 0;
| ^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
489 ms |
432 KB |
Output is correct |
2 |
Correct |
504 ms |
436 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
495 ms |
432 KB |
in the table A+B is not equal to 20 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
489 ms |
432 KB |
Output is correct |
2 |
Correct |
504 ms |
436 KB |
Output is correct |
3 |
Incorrect |
495 ms |
432 KB |
in the table A+B is not equal to 20 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
506 ms |
1364 KB |
Output is correct |
2 |
Correct |
520 ms |
3664 KB |
Output is correct |
3 |
Correct |
513 ms |
4248 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
507 ms |
1460 KB |
in the table A+B is not equal to 46 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
489 ms |
432 KB |
Output is correct |
2 |
Correct |
504 ms |
436 KB |
Output is correct |
3 |
Incorrect |
495 ms |
432 KB |
in the table A+B is not equal to 20 |
4 |
Halted |
0 ms |
0 KB |
- |