QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#174415#6644. Red Black GridUNos_maricones#AC ✓25ms13224kbC++173.4kb2023-09-10 07:20:112023-09-10 07:20:11

Judging History

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

  • [2023-09-10 07:20:11]
  • 评测
  • 测评结果:AC
  • 用时:25ms
  • 内存:13224kb
  • [2023-09-10 07:20:11]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

#define ff   first
#define ss   second
#define pb   push_back

typedef long long   ll;
typedef pair<int,int>   ii;

const int N = 3e5+5;
const int mod = 1e9+7;


int v[1005][1005];

int main() { 
	#ifdef LOCAL
	freopen("in.txt","r",stdin);
	#endif
		
		
	int t; cin >> t;
	while (t--) { 
		int n; cin >> n;
		int k; cin >> k;
		if (k == 1) { 
			cout << "Impossible\n";
			continue;
		}
		if (n == 4 && k == 7) {
			cout << "Possible\n"; 
			for (int i = 0; i < n; ++i) { 
				for (int j = 0; j < n; ++j) { 
					if ((i == 1 && j == 1) || (i == 3 && j == 2)) cout << "B";
					else cout << "R";
				}
				cout << '\n';
			}
			continue;
		}
		if (n <= 3) { 
			for (int i = 0; i < (1<<(n*n)); ++i) { 
				for (int j = 0; j < n; ++j) { 
					for (int k = 0; k < n; ++k) { 
						int pos = j * n + k;
						if (i & (1<<pos)) v[j][k] = 1;
						else v[j][k] = 0;
					}
				}
				int cnt = 0;
				for (int j = 0; j < n; ++j) { 
					for (int k = 0; k < n; ++k) { 
						if (j + 1 < n && abs(v[j + 1][k] - v[j][k]) == 1) cnt++;
						if (k + 1 < n && abs(v[j][k + 1] - v[j][k]) == 1) cnt++; 
					}
				}
				if (cnt == k) { 
					cout << "Possible\n";
					for (int j = 0; j < n; ++j)  {
						for (int k = 0; k < n; ++k) { 
							if (v[j][k]) cout << "B";
							else cout << "R";
						}
						cout << '\n';
					}
					break;
				}
				if (i + 1 == (1<<(n*n))) {
					cout << "Impossible\n";
				}
			}
			continue;
		}
		if ((n == 4 && k <= 6) || (n > 4 && k <= 8)) { 
			for (int i = 0; i < n; ++i) 
				for (int j = 0; j < n; ++j) v[i][j] = 0;
			
			cout << "Possible\n";
			if (k > 0) {
				v[0][0] = 1;
				k -= 2;
				for (int i = 1; i + 1 < n && k; ++i, --k) v[0][i] = 1;
				for (int j = 1; j + 1 < n && k; ++j, --k) v[j][0] = 1;
			}
			for (int j = 0; j < n; ++j)  {
				for (int k = 0; k < n; ++k) { 
					if (v[j][k]) cout << "B";
					else cout << "R";
				}
				cout << '\n';
			}			  
			continue;
		}
		
		vector <ii> two, three, four;
		for (int i = 0 ; i < n; ++i) { 
			for (int j = 0; j < n; ++j) { 
				if ((i + j) % 2 == 0) { 
					v[i][j] = 1;
					if ((i == 0 && j == 0) || (i == 0 && j == n-1) || (i == n-1 && j == 0) || (i == n-1 && j == n-1)) two.pb({i,j});
					else if (i == 0 || j == 0 || i == n-1 || j == n-1) three.pb({i,j});
					else four.pb({i, j});
				}
				else v[i][j] = 0;
				
			}
		}
		
		int rst = 2 * n * (n-1) - k;
		if (rst == 1) { 
			cout << "Impossible\n";
			continue;
		}
		
		int idx3=0,idx4=0;
		
		//cout << four.size() << ' ' << three.size() << '\n';
		
		while (rst >= 1) { 
			//cout << rst << ' ' << idx4 << ' ' << idx3 << '\n';
			if (rst >= 4 && idx4 < four.size()) { 
				v[four[idx4].ff][four[idx4].ss] ^= 1;
				idx4++;
				rst-=4;
			}
			else if (rst >= 3 && idx3 < three.size()) { 
				v[three[idx3].ff][three[idx3].ss] ^= 1;
				idx3++;
				rst-=3;
			}
			else {
				if (rst == 2) { 
					v[two[0].ff][two[0].ss] ^= 1;
					rst -= 2;
				}
				else if (rst == 1) { 
					v[four[0].ff][four[0].ss] ^= 1;
					v[three.back().ff][three.back().ss] ^= 1;
					v[two[0].ff][two[0].ss] ^= 1;
					rst--;
				}
			}
		}
		
		cout << "Possible\n";
		for (int j = 0; j < n; ++j)  {
			for (int k = 0; k < n; ++k) { 
				if (v[j][k]) cout << "B";
				else cout << "R";
			}
			cout << '\n';
		}
	}
	
	return 0;
}


詳細信息

Test #1:

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

input:

2
3 6
3 1

output:

Possible
RBR
BRR
RRR
Impossible

result:

ok correct! (2 test cases)

Test #2:

score: 0
Accepted
time: 25ms
memory: 3912kb

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
R
Possible
RB
BR
Impossible
Possible
BR
RR
Impossible
Possible
RR
RR
Possible
RBR
BRB
RBR
Impossible
Possible
BRB
RBR
BRR
Possible
RBR
BRB
RRR
Possible
BRB
RBR
RRR
Possible
RRB
BBR
RRR
Possible
RBR
BRR
RRR
Possible
RRB
BRR
RRR
Possible
BRB
RRR
RRR
Possible
RBR
RRR
RRR
Possible
BRR
RRR
RRR
I...

result:

ok correct! (4424 test cases)

Test #3:

score: 0
Accepted
time: 17ms
memory: 7508kb

input:

1
1000 0

output:

Possible
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR...

result:

ok correct! (1 test case)

Test #4:

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

input:

1
1000 1

output:

Impossible

result:

ok correct! (1 test case)

Test #5:

score: 0
Accepted
time: 15ms
memory: 11372kb

input:

1
1000 1998000

output:

Possible
BRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB...

result:

ok correct! (1 test case)

Test #6:

score: 0
Accepted
time: 2ms
memory: 11320kb

input:

1
1000 1997999

output:

Impossible

result:

ok correct! (1 test case)

Test #7:

score: 0
Accepted
time: 15ms
memory: 12252kb

input:

1
1000 1638091

output:

Possible
RRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB...

result:

ok correct! (1 test case)

Test #8:

score: 0
Accepted
time: 17ms
memory: 11080kb

input:

1
1000 726743

output:

Possible
RRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB...

result:

ok correct! (1 test case)

Test #9:

score: 0
Accepted
time: 21ms
memory: 11396kb

input:

1
1000 1159802

output:

Possible
RRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB...

result:

ok correct! (1 test case)

Test #10:

score: 0
Accepted
time: 15ms
memory: 13224kb

input:

1
1000 1824691

output:

Possible
RRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB...

result:

ok correct! (1 test case)

Test #11:

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

input:

1
1000 1606348

output:

Possible
BRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB...

result:

ok correct! (1 test case)

Test #12:

score: 0
Accepted
time: 15ms
memory: 4268kb

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
BRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRB
BRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR...

result:

ok correct! (100 test cases)

Test #13:

score: 0
Accepted
time: 23ms
memory: 8480kb

input:

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

output:

Possible
RRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR
RBRRRRRRRR...

result:

ok correct! (10 test cases)

Test #14:

score: 0
Accepted
time: 20ms
memory: 8308kb

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
BRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRB
BRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR
RRRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB
BRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBR
RBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB
BRBRBRBRBRBRBRBRBRBRB...

result:

ok correct! (13 test cases)

Test #15:

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

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
BRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRBRB
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR
BRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRB
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR
BRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRB
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR
BRRRRRRRRRRRRRRRRRRRRRRRRRR...

result:

ok correct! (792 test cases)