Submission #333650

# Submission time Handle Problem Language Result Execution time Memory
333650 2020-12-07T09:59:21 Z vipghn2003 Red-blue table (IZhO19_stones) C++14
27 / 100
37 ms 1516 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 res=0;
    int del=0;
    for(int row_del=0;row_del<=n;row_del++)
    {
        int can=(m-1)/2;
        int need=max(0,n-(n-1)/2-row_del);
        if(need==0)
        {
            if(res<m+n-row_del)
            {
                res=m+n-row_del;
                del=row_del;
            }
            continue;
        }
        if(res<n-row_del+((n-row_del)/need)*can)
        {
            res=n-row_del+((n-row_del)/need)*can;
            del=row_del;
        }
    }
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=m;j++) ans[i][j]='+';
    }
    for(int i=n-del+1;i<=n;i++)
    {
        for(int j=1;j<=m;j++) ans[i][j]='-';
    }
    set<pii>cur;
    cur.clear();
    for(int j=1;j<=m;j++) if(del<=n-del) cur.insert(mp(del,j));
    for(int i=1;i<=n-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)) continue;
            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();
    }
}

# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 364 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
3 Correct 2 ms 364 KB Output is correct
4 Incorrect 3 ms 492 KB in the table A+B is not equal to 45
# Verdict Execution time Memory Grader output
1 Incorrect 37 ms 1516 KB in the table A+B is not equal to 539
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 35 ms 1516 KB in the table A+B is not equal to 144
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
3 Correct 2 ms 364 KB Output is correct
4 Incorrect 3 ms 492 KB in the table A+B is not equal to 45