0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:45:25 +00:00
OI-codes/AcWing/208/208.cpp

81 lines
1.3 KiB
C++

#include <iostream>
#include <cstring>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 35;
int t, n, a[N][N];
int gauss() {
int r, c;
for (r = c = 1; c <= n; c++) {
int t = r;
for (int i = r; i <= n; i++) {
if (a[i][c]) t = i;
}
if (!a[t][c]) continue;
std::swap(a[t], a[r]);
for (int i = r + 1; i <= n; i++) {
if (a[i][c]) {
for (int j = n + 1; j >= c; j--) {
a[i][j] ^= a[r][j];
}
}
}
r++;
}
int res = 1;
if (r <= n) {
for (int i = r; i <= n; i++) {
if (a[i][n + 1]) return -1;
res <<= 1;
}
}
return res;
}
int main() {
std::ios::sync_with_stdio(false);
cin >> t;
while (t--) {
memset(a, 0x00, sizeof(a));
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i][n + 1];
}
for (int i = 1, x; i <= n; i++) {
cin >> x;
a[i][n + 1] ^= x;
a[i][i] = 1;
}
int x, y;
while (cin >> x >> y, x || y) a[y][x] = 1;
int r = gauss();
if (r == -1) {
cout << "Oh,it's impossible~!!" << endl;
} else {
cout << r << endl;
}
}
return 0;
}