# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
992881 | 2024-06-05T08:04:43 Z | simona1230 | Red-blue table (IZhO19_stones) | C++17 | 2000 ms | 8628 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/cn; 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; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 6236 KB | Output is correct |
2 | Correct | 3 ms | 6276 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 33 ms | 6492 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 6236 KB | Output is correct |
2 | Correct | 3 ms | 6276 KB | Output is correct |
3 | Correct | 33 ms | 6492 KB | Output is correct |
4 | Correct | 57 ms | 6488 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 461 ms | 7660 KB | Output is correct |
2 | Execution timed out | 2058 ms | 7516 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 615 ms | 7828 KB | Output is correct |
2 | Execution timed out | 2060 ms | 8628 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 6236 KB | Output is correct |
2 | Correct | 3 ms | 6276 KB | Output is correct |
3 | Correct | 33 ms | 6492 KB | Output is correct |
4 | Correct | 57 ms | 6488 KB | Output is correct |
5 | Correct | 461 ms | 7660 KB | Output is correct |
6 | Execution timed out | 2058 ms | 7516 KB | Time limit exceeded |
7 | Halted | 0 ms | 0 KB | - |