QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#127424 | #6644. Red Black Grid | xiaoxing666 | WA | 12ms | 3564kb | C++17 | 2.8kb | 2023-07-19 17:17:14 | 2023-07-19 17:17:15 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int t, n, k;
string ans[1005];
void verify(int prek) {
int res = 0;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++) {
if(i != 0 && ans[i][j] != ans[i - 1][j]) res++;
if(j != 0 && ans[i][j] != ans[i][j - 1]) res++;
}
assert(res == prek);
}
void solve()
{
scanf("%d %d", &n, &k);
if ( n == 1 )
{
puts("Possible");
cout << "B" << endl;
return ;
}
if (k == 1 || k == 2 * n * (n - 1) - 1)
{
puts("Impossible");
return ;
}
if (n == 2)
{
puts("Possible");
if (k == 0)
{
cout << "BB" << endl;
cout << "BB" << endl;
}
else if (k == 2)
{
cout << "RB" << endl;
cout << "BB" << endl;
}
else if (k == 4)
{
cout << "RB" << endl;
cout << "BR" << endl;
}
return ;
}
for (int i = 0; i < n; i++)
{
ans[i] = string(n, 'B');
}
if (k == 0)
{
;
}
else if (k == 2)
{
ans[0][0] = 'R';
}
else if (k == 3)
{
ans[0][0] = ans[0][1] = 'R';
}
else if (k == 4)
{
ans[0][0] = ans[n - 1][n - 1] = 'R';
}
else if (k == 5)
{
ans[0][1] = ans[n - 1][n - 1] = 'R';
}
else if (k == 6)
{
ans[0][1] = ans[n - 1][1] = 'R';
}
else if (k == 7)
{
ans[0][1] = ans[n - 1][0] = ans[n - 1][n - 1] = 'R';
}
else
{
for (int i = 0; i < n; i++)
{
for (int j = (i & 1) ^ 1; j < n; j += 2)
{
ans[i][j] = 'R';
}
}
int tot = 2 * n * (n - 1);
if (tot == k)
{
puts("Possible");
for (int i = 0; i < n; i++)
{
cout << ans[i] << endl;
}
return ;
}
else if (tot - 2 == k)
{
puts("Possible");
ans[0][0] = 'R';
for (int i = 0; i < n; i++)
{
cout << ans[i] << endl;
}
return ;
}
if (k & 1)ans[0][1] = 'B';
tot -= 3;
vector<pair<int, int> >_change[5];
for (int i = 0; i < n; i++)
{
for (int j = (i & 1); j < n; j += 2)
{
if ((k & 1) && abs(i + j - 1) == 1)continue;
int sub = 4;
if (i == 0)sub--;
if (j == 0)sub--;
if (i == n - 1)sub--;
if (j == n - 1)sub--;
_change[sub].push_back({i, j});
}
}
int s2 = _change[2].size(), s3 = _change[3].size();
int s4 = _change[4].size();
while (tot - k >= 6 && s3 >= 2)
{
tot -= 6;
int u = _change[3].back().first, v = _change[3].back().second;
_change[3].pop_back();
ans[u][v] = 'R';
u = _change[3].back().first, v = _change[3].back().second;
_change[3].pop_back();
ans[u][v] = 'R';
s3 = s3 - 2;
}
while (tot - k >= 2 && s2)
{
tot -= 2;
int u = _change[2].back().first, v = _change[2].back().second;
_change[2].pop_back();
ans[u][v] = 'R';
s2 = s2 - 1;
}
while ( tot - k >= 4 && s4)
{
tot -= 4;
int u = _change[4].back().first, v = _change[4].back().second;
_change[4].pop_back();
ans[u][v] = 'R';
s4 = s4 - 1;
}
if (tot != k)
{
puts("Impossible");
return ;
}
}
puts("Possible");
for (int i = 0; i < n; i++)
{
cout << ans[i] << endl;
}
verify(k);
}
int main()
{
scanf("%d", &t);
while (t--)
{
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3564kb
input:
2 3 6 3 1
output:
Possible BRB BBB BRB Impossible
result:
ok correct! (2 test cases)
Test #2:
score: -100
Wrong Answer
time: 12ms
memory: 3540kb
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 RB BB Impossible Possible BB BB Possible BRB RBR BRB Impossible Possible RRB RBR BRB Possible BBB RBR BRB Impossible Possible BRB BBB RBR Possible BRB BBB BRB Possible BRB BBB BBR Possible RBB BBB BBR Possible RRB BBB BBB Possible RBB BBB BBB Impossible ...
result:
wrong answer Condition failed: "A == B" (test case 11)