QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#469207 | #8520. Xor Partitions | kmiao | WA | 95ms | 13636kb | C++20 | 723b | 2024-07-09 16:09:08 | 2024-07-09 16:09:09 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
#define pb push_back
const int N = 3e5 + 5;
const ll m = 1e9 + 7;
int n;
ll a[N];
map<pair<ll, ll>, ll> mp;
ll f(int i, ll base) {
base ^= a[i];
if (mp.find({i, base}) != mp.end()) {
return mp[{i, base}];
}
if (i < n-1) {
mp[{i, base}] = (base * f(i+1, 0) % m + f(i+1, base) % m) % m;
return mp[{i, base}];
}
mp[{i, base}] = base;
return base;
}
int main() {
cin.tie(0)->sync_with_stdio(0);
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
ll ans = f(0, 0) % m;
cout << ans << '\n';
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3644kb
input:
4 7 3 1 2
output:
170
result:
ok 1 number(s): "170"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3524kb
input:
1 0
output:
0
result:
ok 1 number(s): "0"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
1 1
output:
1
result:
ok 1 number(s): "1"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3596kb
input:
3 1 2 3
output:
16
result:
ok 1 number(s): "16"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3584kb
input:
4 0 1 0 1
output:
2
result:
ok 1 number(s): "2"
Test #6:
score: -100
Wrong Answer
time: 95ms
memory: 13636kb
input:
562 918479109239293921 960173570446350728 374394588863436385 418106819278123099 473761712658352147 662782574081105364 824954323015093862 827581845536521847 184394794881199801 820907621998888642 606529830885621237 961790689782125501 582742201855597942 337901250755571075 287706594894797714 18578215893...
output:
-323329486
result:
wrong answer 1st numbers differ - expected: '641941658', found: '-323329486'