# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
992879 | 2024-06-05T08:04:21 Z | simona1230 | Red-blue table (IZhO19_stones) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; void speed() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); } int n,m; int ans[1024][1024]; int curr[1024][1024]; struct row { int x,l; row(){} row(int _x,int _l) { x=_x; l=_l; } bool operator<(const row&r)const { return r.l<l; } }; void solve() { cin>>n>>m; int rn=m/2+1; int cn=n/2+1; //cout<<rn<<" "<<cn<<endl; int ans_=0; for(int a=0;a<=n;a++) { priority_queue<row> q; for(int i=1;i<=a;i++) if(rn-m!=0)q.push({i,rn-m}); for(int i=a+1;i<=n;i++) q.push({i,-m}); int lf=m-rn; int pr=lf/rm; int b=0; if(n-a>cn) { b=m; } else for(int j=1;j<=m;j++) { vector<row> v; bool pos=1; for(int k=1;k<=cn;k++) { if(q.size()==0) { pos=0; break; } //cout<<j<<" "<<q.top().x<<endl; row t=q.top(); q.pop(); t.l++; curr[t.x][j]=1; if(t.l!=0)v.push_back(t); } if(pos)b++; for(int k=0;k<v.size();k++) q.push(v[k]); } ans_=max(ans_,a+b); //cout<<a+b<<" "<<a<<" "<<b<<endl; if(ans_==a+b) { for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { ans[i][j]=curr[i][j]; } } } for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { curr[i][j]=0; } } } cout<<ans_<<endl; for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) if(ans[i][j]==0)cout<<"+"; else cout<<"-"; cout<<endl; } memset(ans,0,sizeof(ans)); } int main() { speed(); int t; cin>>t; while(t--) solve(); return 0; }