QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#592656 | #7635. Fairy Chess | wkr | WA | 12ms | 3588kb | C++14 | 2.7kb | 2024-09-27 01:09:24 | 2024-09-27 01:09:25 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
#define close ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)
typedef unsigned long long ull;
const string t = "RBQACM";
array<array<ull, 64>, 6> hit;
string s;
array<int, 12> a;
inline bool Alice(int nums, ull vis, ull used);
inline bool Bob(int nums, ull vis, ull used);
inline int pos(int x, int y)
{
return 8 * x + y;
}
inline bool Alice(int nums, ull vis, ull used)
{
if (nums == 12)
{
return 0;
}
for (int i = 0; i < 64; i++)
{
if ((used >> i) & 1)
{
continue;
}
ull who = hit[a[nums]][i];
if (vis & who)
{
continue;
}
if (Bob(nums + 1, vis | (1ull << i), used | who))
{
return 1;
}
}
return 0;
}
inline bool Bob(int nums, ull vis, ull used)
{
for (int i = 0; i < 64; i++)
{
if ((used >> i) & 1)
{
continue;
}
ull who = hit[a[nums]][i];
if (vis & who)
{
continue;
}
if (!Alice(nums + 1, vis | (1ull << i), used | who))
{
return 0;
}
}
return 1;
}
void solved()
{
cin >> s;
for (int i = 0; i < 12; i++)
{
a[i] = t.find(s[i]);
}
for (int i = 0; i < 8; i++)
{
for (int j = 0; j < 8; j++)
{
ull p = 0;
int idx = pos(i, j);
for (int k = 0; k < 8; k++)
{
hit[0][idx] |= 1ull << pos(i, k);
hit[0][idx] |= 1ull << pos(k, j);
}
for (int x = 0; x < 8; x++)
{
for (int y = 0; y < 8; y++)
{
if (x + y == i + j || x - y == i - j)
{
hit[1][idx] |= 1ull << pos(x, y);
}
}
}
hit[2][idx] = hit[0][idx] | hit[1][idx];
for (int x = 0; x < 8; x++)
{
for (int y = 0; y < 8; y++)
{
int dx = i - x;
int dy = j - y;
if (dx * dx + dy * dy == 5)
{
p |= 1ull << pos(x, y);
}
}
}
for (int k = 3; k <= 5; k++)
{
hit[k][idx] = p | hit[k - 3][idx];
}
}
}
if (Alice(0, 0, 0))
{
cerr << "Alice" << endl;
}
else
{
cerr << "Bob" << endl;
}
}
signed main()
{
close;
solved();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 12ms
memory: 3588kb
input:
BBAARRCCQQMM
output:
result:
wrong answer 1st lines differ - expected: 'Bob', found: ''