# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
333623 | 2020-12-07T08:58:44 Z | vipghn2003 | Red-blue table (IZhO19_stones) | C++14 | 197 ms | 2252 KB |
#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-1; 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; while(t--) { cin>>n>>m; solve(); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Incorrect | 1 ms | 364 KB | in the table A+B is not equal to 5 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 364 KB | in the table A+B is not equal to 51 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Incorrect | 1 ms | 364 KB | in the table A+B is not equal to 5 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 165 ms | 1436 KB | Output is correct |
2 | Correct | 197 ms | 2252 KB | Output is correct |
3 | Correct | 179 ms | 2176 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 168 ms | 1516 KB | in the table A+B is not equal to 45 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Incorrect | 1 ms | 364 KB | in the table A+B is not equal to 5 |