# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
992740 | 2024-06-05T06:40:55 Z | simona1230 | Red-blue table (IZhO19_stones) | C++17 | 1068 ms | 9748 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; int ans_=0; for(int a=0;a<=n;a++) { priority_queue<row> q; for(int i=1;i<=a;i++) q.push({i,rn-m}); for(int i=a+1;i<=n;i++) q.push({i,-m}); int b=0; 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; } 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); 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; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 6236 KB | Output is correct |
2 | Incorrect | 3 ms | 6360 KB | in the table A+B is not equal to 3 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 35 ms | 8540 KB | in the table A+B is not equal to 3 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 6236 KB | Output is correct |
2 | Incorrect | 3 ms | 6360 KB | in the table A+B is not equal to 3 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 779 ms | 9748 KB | in the table A+B is not equal to 88 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1068 ms | 9556 KB | in the table A+B is not equal to 2 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 6236 KB | Output is correct |
2 | Incorrect | 3 ms | 6360 KB | in the table A+B is not equal to 3 |
3 | Halted | 0 ms | 0 KB | - |