#include<bits/stdc++.h>
#define pii pair<int,int>
#define fi first
#define se second
#define mp make_pair
using namespace std;
const int N=1005;
int n,m;
char ans[N][N];
void solve()
{
int f=0;
set<pii>cur;
for(int j=1;j<=m;j++) cur.insert(mp(0,j));
for(int i=1;i<=n;i++)
{
vector<pii>del;
int can=(m-1)/2;
while(!cur.empty()&&can)
{
can--;
auto x=*cur.rbegin();
cur.erase(x);
int col=x.se;
if(x.fi+1>(n-x.fi-1))
{
f++;
}
else del.push_back(mp(x.fi+1,x.se));
}
for(auto&x:del) cur.insert(x);
}
int res=f+n;
int row_del=0;
for(int i=1;i<=n;i++)
{
int can=m-(m-1)/2;
vector<pii>del;
while(!cur.empty()&&can)
{
can--;
auto x=*cur.rbegin();
cur.erase(x);
int col=x.se;
if(x.fi+1>(n-x.fi-1))
{
f++;
}
else del.push_back(mp(x.fi+1,x.se));
}
for(auto&x:del) cur.insert(x);
if(res<f+n-i)
{
res=f+n-i;
row_del=i;
}
}
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++) ans[i][j]='+';
}
for(int i=n-row_del+1;i<=n;i++)
{
for(int j=1;j<=m;j++) ans[i][j]='-';
}
cur.clear();
for(int j=1;j<=m;j++) if(row_del<n-row_del) cur.insert(mp(row_del,j));
for(int i=1;i<=n-row_del;i++)
{
vector<pii>del;
int can=(m-1)/2;
while(!cur.empty()&&can)
{
can--;
auto x=*cur.rbegin();
cur.erase(x);
int col=x.se;
ans[i][col]='-';
if(x.fi+1>(n-x.fi-1))
{
f++;
}
else del.push_back(mp(x.fi+1,x.se));
}
for(auto&x:del) cur.insert(x);
}
cout<<res<<'\n';
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++) cout<<ans[i][j];
cout<<'\n';
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int t;
cin>>t;
/*for(int i=1;i<=10;i++)
for(int j=1;j<=10;j++)
n=i,m=j;
solve();*/
while(t--)
{
cin>>n>>m;
solve();
}
}
Compilation message
stones.cpp: In function 'void solve()':
stones.cpp:26:17: warning: unused variable 'col' [-Wunused-variable]
26 | int col=x.se;
| ^~~
stones.cpp:46:17: warning: unused variable 'col' [-Wunused-variable]
46 | int col=x.se;
| ^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
0 ms |
364 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
364 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
0 ms |
364 KB |
Output is correct |
3 |
Correct |
3 ms |
364 KB |
Output is correct |
4 |
Incorrect |
6 ms |
492 KB |
in the table A+B is not equal to 26 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
164 ms |
1516 KB |
Output is correct |
2 |
Correct |
200 ms |
2156 KB |
Output is correct |
3 |
Correct |
178 ms |
2284 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
169 ms |
1516 KB |
Wrong answer in test 6 6: 8 < 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
0 ms |
364 KB |
Output is correct |
3 |
Correct |
3 ms |
364 KB |
Output is correct |
4 |
Incorrect |
6 ms |
492 KB |
in the table A+B is not equal to 26 |