QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#135239#6644. Red Black GridVengeful_Spirit#AC ✓19ms3648kbC++203.7kb2023-08-05 13:09:532023-08-05 13:09:56

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-08-05 13:09:56]
  • 评测
  • 测评结果:AC
  • 用时:19ms
  • 内存:3648kb
  • [2023-08-05 13:09:53]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
void ok() {
    cout << "Possible\n";
    return;
}
void no() {
    cout << "Impossible\n";
    return;
}
int cal(int x, int y, int n) {
    if(x == 1 && y == 1) return 2;
    if(x == 1 && y == n) return 2;
    if(x == n && y == 1) return 2;
    if(x == n && y == n) return 2;
    if(x == 1 || x == n || y == 1 || y == n) return 3;
    return 4;
}
bool check(int x, int y, int n, int m) {
    int num3 = 0, num4 = 0, num2 = 0;
    for(int i = 1; i <= n; i ++) for(int j = 1; j <= n; j ++) {
        if((x + i) % 2 == (y + j) % 2) {
            int xx = i;
            int yy = j;
            int z = cal(xx, yy, n);
            if(z == 3) ++num3;
            if(z == 4) ++num4;
            if(z == 2) ++num2;
        }
    }
    int all = 2 * n * (n - 1);
    bool fd = 0;
    int nn3, nn4, nn2;

    // cout << all << " " << m << "\n";
    // cout << num2 << " " << num3 << " " << num4 << "\n";

    for(int i = 0; i <= num3; ++i) {
        int xx = all - m;
        if(3 * i <= xx) {
            int yy = xx - 3 * i;
            for(int j = 0; j <= num2; ++j) if(j * 2 <= yy){
                int zz = yy - j * 2;
                if(zz%4==0&&zz/4<=num4) {
                    fd = 1;
                    nn3 = i;
                    nn2 = j;
                    nn4 = zz/4;
                    break;
                }
                if(fd == 1) break;
            }
        }
        if(fd == 1) break;
    }
    if(fd) {
        ok();
        for(int i = 1; i <= n; ++i) {
            for(int j = 1; j <= n; ++j) {
                if((i + x) % 2 == (j + y) % 2) {
                    int z = cal(i, j, n);
                    if(z == 2) {
                        if(nn2>0) {
                            --nn2;
                            cout << "B";
                        }
                        else cout << "R";
                    }
                    if(z == 3) {
                        if(nn3>0) {
                            --nn3;
                            cout << "B";
                        }
                        else cout << "R";
                    }
                    if(z == 4) {
                        if(nn4>0) {
                            --nn4;
                            cout << "B";
                        }
                        else cout << "R";
                    }
                }
                else cout << "B";
            }
            cout << "\n";
        }
        return 1;
    }
    return 0;
}
void solve() {
    int n, m;
    cin >> n >> m;
    if(n == 1) {
        if(m == 0) {
            ok();
            cout << "B\n";
        } else {
            no();
        }
        return;
    }
    if(n == 3 && m == 5) {
        ok();
        cout << "RBB\nBBB\nBRB\n";
        return;
    }
    if(n == 3 && m == 7) {
        ok();
        cout << "BRB\nBBB\nRBR\n";
        return;
    }
    if(!check(1, 1, n, m)) {
        if(!check(1, 0, n, m)) {
            no();
        }
    }
}

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);

    int T;
    cin >> T;
    while(T--) {
        solve();
    }
    return 0;
}

/*
Impossible
Possible
BBBB
BBBB
BBBB
BBBR
Possible
BBBB
BBBB
BBBB
BRBB
Possible
RBBB
BBBB
BBBB
BBBR
Possible
BBBB
BBBB
BBBB
BRBR
Possible
BBBB
BBBB
RBBB
BRBB
Possible
RBBB
BBBB
BBBB
BRBR
Possible
BBBB
BBBB
RBBB
BRBR
Possible
BBBB
BBBR
RBBB
BRBB
Possible
RBBB
BBBB
RBBB
BRBR
Possible
BBBB
BBBR
RBBB
BRBR
Possible
BBRB
BBBR
RBBB
BRBB
Possible
RBBB
BBBR
RBBB
BRBR
Possible
BBRB
BBBR
RBBB
BRBR
Possible
BBBB
BBBR
RBRB
BRBR
Possible
RBRB
BBBR
RBBB
BRBR
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3376kb

input:

2
3 6
3 1

output:

Possible
BBR
BBB
RBR
Impossible

result:

ok correct! (2 test cases)

Test #2:

score: 0
Accepted
time: 19ms
memory: 3432kb

input:

4424
1 0
2 4
2 3
2 2
2 1
2 0
3 12
3 11
3 10
3 9
3 8
3 7
3 6
3 5
3 4
3 3
3 2
3 1
3 0
4 24
4 23
4 22
4 21
4 20
4 19
4 18
4 17
4 16
4 15
4 14
4 13
4 12
4 11
4 10
4 9
4 8
4 7
4 6
4 5
4 4
4 3
4 2
4 1
4 0
5 40
5 39
5 38
5 37
5 36
5 35
5 34
5 33
5 32
5 31
5 30
5 29
5 28
5 27
5 26
5 25
5 24
5 23
5 22
5 21
5...

output:

Possible
B
Possible
RB
BR
Impossible
Possible
BB
BR
Impossible
Possible
BB
BB
Possible
RBR
BRB
RBR
Impossible
Possible
BBR
BRB
RBR
Possible
BBB
RBR
BRB
Possible
RBR
BBB
RBR
Possible
BRB
BBB
RBR
Possible
BBR
BBB
RBR
Possible
RBB
BBB
BRB
Possible
BBB
BBB
RBR
Possible
BBB
BBB
BRB
Possible
BBB
BBB
BBR
I...

result:

ok correct! (4424 test cases)

Test #3:

score: 0
Accepted
time: 16ms
memory: 3592kb

input:

1
1000 0

output:

Possible
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

result:

ok correct! (1 test case)

Test #4:

score: 0
Accepted
time: 1ms
memory: 3432kb

input:

1
1000 1

output:

Impossible

result:

ok correct! (1 test case)

Test #5:

score: 0
Accepted
time: 16ms
memory: 3480kb

input:

1
1000 1998000

output:

Possible
RBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR...

result:

ok correct! (1 test case)

Test #6:

score: 0
Accepted
time: 0ms
memory: 3640kb

input:

1
1000 1997999

output:

Impossible

result:

ok correct! (1 test case)

Test #7:

score: 0
Accepted
time: 11ms
memory: 3648kb

input:

1
1000 1638091

output:

Possible
BBBBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR...

result:

ok correct! (1 test case)

Test #8:

score: 0
Accepted
time: 7ms
memory: 3472kb

input:

1
1000 726743

output:

Possible
BBBBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR...

result:

ok correct! (1 test case)

Test #9:

score: 0
Accepted
time: 10ms
memory: 3540kb

input:

1
1000 1159802

output:

Possible
BBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR...

result:

ok correct! (1 test case)

Test #10:

score: 0
Accepted
time: 10ms
memory: 3468kb

input:

1
1000 1824691

output:

Possible
BBBBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR...

result:

ok correct! (1 test case)

Test #11:

score: 0
Accepted
time: 16ms
memory: 3484kb

input:

1
1000 1606348

output:

Possible
RBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR...

result:

ok correct! (1 test case)

Test #12:

score: 0
Accepted
time: 12ms
memory: 3592kb

input:

100
100 3588
100 16278
100 14222
100 3818
100 16278
100 2672
100 7447
100 5705
100 9385
100 19205
100 16362
100 14175
100 327
100 18201
100 3519
100 14923
100 5358
100 17389
100 8773
100 7611
100 2185
100 3314
100 2358
100 18271
100 9499
100 12584
100 8079
100 16954
100 12620
100 16333
100 7148
100 ...

output:

Possible
RBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBR
RBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

result:

ok correct! (100 test cases)

Test #13:

score: 0
Accepted
time: 4ms
memory: 3388kb

input:

10
280 56983
468 47999
111 964
346 192134
60 3108
348 98521
421 57292
24 310
29 1080
484 17366

output:

Possible
BBBBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB
BBBBBBBBBB...

result:

ok correct! (10 test cases)

Test #14:

score: 0
Accepted
time: 13ms
memory: 3600kb

input:

13
44 3612
468 9437
171 34192
174 33316
121 15295
249 1231
84 9464
170 56598
358 183525
369 42656
29 595
226 74474
296 34671

output:

Possible
RBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBR
RBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
BBBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR
RBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB
BRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR
RBRBRBRBRBRBRBRBRBRBR...

result:

ok correct! (13 test cases)

Test #15:

score: 0
Accepted
time: 14ms
memory: 3548kb

input:

792
43 1432
33 1687
39 1872
49 906
41 27
49 1140
41 2730
39 1350
33 1625
26 986
26 1079
29 377
50 2930
24 536
28 874
44 1659
36 46
26 1199
46 1289
50 1662
48 59
20 90
37 2025
40 1971
31 443
31 511
36 1940
29 1515
21 104
24 432
23 337
38 2222
36 1016
24 786
23 737
50 1728
45 2032
22 183
50 416
44 375...

output:

Possible
RBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
RBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBR
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
RBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBR
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
RBBBBBBBBBBBBBBBBBBBBBBBBBB...

result:

ok correct! (792 test cases)