QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#534432#9114. Black or White 2Goldenglow1427WA 149ms1608kbC++171.4kb2024-08-27 09:59:482024-08-27 09:59:48

Judging History

你现在查看的是最新测评结果

  • [2024-08-27 09:59:48]
  • 评测
  • 测评结果:WA
  • 用时:149ms
  • 内存:1608kb
  • [2024-08-27 09:59:48]
  • 提交

answer

/*
ID: Victor Chen [mail_vi1]
PROG: QOJ 9114
LANG: C++
*/

#include <cstdlib>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cassert>

using namespace std;

const int Maxn = 1500;

int T;

int n, m, k;
bool rev;

int mp[Maxn+10][Maxn+10];

void solve()
{
    scanf("%d%d%d", &n, &m, &k);
    if(k*2 > n*m)
        k = n*m-k, rev = true;
    else
        rev = false;
    
    for(int i=1; i<=n; i++)
        for(int j=1; j<=m; j++)
            mp[i][j] = 0;

    if(k <= (m+1)/2)
    {
        for(int i=1; i<=k; i++)
            mp[1][2*i-1] = 1;
    }
    else
    {
        for(int i=1; i<=m; i+=2)
            mp[1][i] = 1, k--;
        
        for(int i=2; i<=n; i++)
        {
            for(int j=1; j<=m; j++)
            {
                if(mp[i-1][j] == 0)
                    mp[i-1][j] = mp[i][j] = 1, k -= 2;
                
                if(k < 2)
                    break;
            }
            if(k < 2)
                break;
        }

        if(k == 1)
            mp[n][m] = 1;
    }

    for(int i=1; i<=n; i++)
    {
        for(int j=1; j<=m; j++)
            if(rev == true)
                printf("%d", 1-mp[i][j]);
            else
                printf("%d", mp[i][j]);
            
        printf("\n");
    }
}

int main()
{
    scanf("%d", &T);
    while(T != 0)
    {
        T--;
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 1604kb

input:

2
2 2 2
2 3 0

output:

10
01
000
000

result:

ok Output is valid. OK.

Test #2:

score: -100
Wrong Answer
time: 149ms
memory: 1608kb

input:

27520
2 2 0
2 2 1
2 2 2
2 2 3
2 2 4
2 3 0
2 3 1
2 3 2
2 3 3
2 3 4
2 3 5
2 3 6
3 2 0
3 2 1
3 2 2
3 2 3
3 2 4
3 2 5
3 2 6
3 3 0
3 3 1
3 3 2
3 3 3
3 3 4
3 3 5
3 3 6
3 3 7
3 3 8
3 3 9
2 4 0
2 4 1
2 4 2
2 4 3
2 4 4
2 4 5
2 4 6
2 4 7
2 4 8
3 4 0
3 4 1
3 4 2
3 4 3
3 4 4
3 4 5
3 4 6
3 4 7
3 4 8
3 4 9
3 4 10...

output:

00
00
10
00
10
01
01
11
11
11
000
000
100
000
101
000
101
001
010
111
011
111
111
111
00
00
00
10
00
00
10
00
01
11
01
00
01
11
10
01
11
11
11
11
11
000
000
000
100
000
000
101
000
000
101
000
001
111
010
000
000
101
111
010
111
110
010
111
111
011
111
111
111
111
111
0000
0000
1000
0000
1010
0000
1...

result:

wrong answer Output doesn't minimize loss.