#include <bits/stdc++.h>
using namespace std;
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
using ll = unsigned long long;
using base = complex<long double>;
const long double PI = acos(-1);
void fft(vector<base>& a, bool inv) {
int n = sz(a);
for (int i = 1, j = 0; i < n; i++) {
int bit = n >> 1;
while (j >= bit) j -= bit, bit >>= 1;
j += bit;
if (i < j) swap(a[i], a[j]);
}
for (int len = 2; len <= n; len <<= 1) {
vector<base> w(len >> 1);
for (int i = 0; i < (len >> 1); i++) {
long double ang = 2 * PI * i / len * (inv ? -1 : 1);
w[i] = base(cos(ang), sin(ang));
}
for (int i = 0; i < n; i += len) {
for (int j = 0; j < len / 2; j++) {
base u = a[i + j], v = a[i + j + len / 2] * w[j];
a[i + j] = u + v;
a[i + j + len / 2] = u - v;
}
}
}
if (inv) for (int i = 0; i < n; i++) a[i] /= n;
}
vector<ll> multiply(vector<int>& a, vector<int>& b) {
vector<base> fa(all(a)), fb(all(b));
int n = 1;
while (n < max(sz(a), sz(b))) n <<= 1;
fa.resize(n), fb.resize(n);
fft(fa, false); fft(fb, false);
for (int i = 0; i < n; i++) fa[i] *= fb[i];
fft(fa, true);
vector<ll> ret(n);
for (int i = 0; i < n; i++) ret[i] = (ll)(fa[i].real() + (fa[i].real() > 0 ? 0.5 : -0.5));
return ret;
}
int main() {
cin.tie(0);
ios_base::sync_with_stdio(0);
int n, m;
cin >> n >> m;
n++, m++;
int k = 1;
while (k < 2 * max(n, m) - 1) k <<= 1;
vector<int> a(k), b(k);
for (int i = 0; i < n; i++) cin >> a[i];
for (int i = 0; i < m; i++) cin >> b[i];
vector<ll> res = multiply(a, b);
ll ans = 0;
for (int i = 0; i < n + m - 1; i++) ans ^= res[i];
cout << ans << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
204 KB |
Output is correct |
4 |
Correct |
3 ms |
460 KB |
Output is correct |
5 |
Correct |
3 ms |
460 KB |
Output is correct |
6 |
Correct |
3 ms |
460 KB |
Output is correct |
7 |
Correct |
3 ms |
460 KB |
Output is correct |
8 |
Correct |
3 ms |
460 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
48 ms |
3232 KB |
Output is correct |
2 |
Correct |
397 ms |
22952 KB |
Output is correct |
3 |
Correct |
397 ms |
23020 KB |
Output is correct |
4 |
Correct |
388 ms |
22956 KB |
Output is correct |
5 |
Correct |
395 ms |
22860 KB |
Output is correct |
6 |
Correct |
392 ms |
22956 KB |
Output is correct |
7 |
Correct |
405 ms |
23084 KB |
Output is correct |
8 |
Correct |
398 ms |
22864 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
870 ms |
45536 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |