답안 #333658

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
333658 2020-12-07T10:32:31 Z vipghn2003 Red-blue table (IZhO19_stones) C++14
0 / 100
229 ms 1772 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],b[N][N];

int solve(int n,int m)
{
    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;
        }
        int l=0,r=m,x=0;
        while(l<=r)
        {
            int mid=(l+r)/2;
            int val=n+1;
            if(can) val=(mid+can-1)/can*need;
            if(val<=n-row_del)
            {
                x=mid;
                l=mid+1;
            }
            else r=mid-1;
        }
        if(res<=n-row_del+x)
        {
            res=n-row_del+x;
            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>u;
        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;
            u.push_back(mp(x.fi+1,x.se));
        }
        for(auto&x:u) cur.insert(x);
    }
    return res;
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int t;
    cin>>t;
    while(t--)
    {
        cin>>n>>m;
        if(solve(n,m)>solve(m,n))
        {
            cout<<solve(n,m)<<'\n';
            for(int i=1;i<=n;i++)
            {
                for(int j=1;j<=m;j++) cout<<ans[i][j];
                cout<<'\n';
            }
            continue;
        }
        cout<<solve(m,n)<<'\n';
        for(int i=1;i<=m;i++)
        {
            for(int j=1;j<=n;j++) b[j][i]=ans[i][j];
        }
        for(int i=1;i<=n;i++)
        {
            for(int j=1;j<=m;j++) cout<<b[i][j];
            cout<<'\n';
        }
    }
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB in the table A+B is not equal to 3
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 492 KB in the table A+B is not equal to 46
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB in the table A+B is not equal to 3
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 216 ms 1644 KB in the table A+B is not equal to 116
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 229 ms 1772 KB in the table A+B is not equal to 44
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB in the table A+B is not equal to 3
2 Halted 0 ms 0 KB -