#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#include <cstring>
#warning That's the baby, that's not my baby
#define int long long
typedef long long ll;
const int mod = 1e9 + 7;
const int NMAX = 30;
const int VMAX = 128;
struct Update {
int l, r, x;
};
int cnt[VMAX][VMAX];
ll newCnt[VMAX][VMAX];
ll ways[NMAX][NMAX];
/// cnt[x][y] =def= pt cate subset uri am a[i] = x, a[j] = y?
#define debug(x) #x << " = " << x
signed main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(0);
int n;
std::cin >> n;
std::vector<int> a(n);
for (int i = 0; i < n; i++) {
std::cin >> a[i];
}
for (int i = 0; i < n; i++) {
for (int j = i; j < n; j++) {
ways[i][j] = (i + 1) * (n - j);
}
}
int q;
std::cin >> q;
std::vector<Update> Q(q);
for (auto &[l, r, v] : Q) {
std::cin >> l >> r >> v;
--l, --r;
}
ll answer = 0;
for (int i = 0; i < n; i++) {
for (int j = i; j < n; j++) {
memset(cnt, 0, sizeof(cnt));
cnt[a[i]][a[j]] = 1;
for (auto &[l, r, v] : Q) {
for (int x = 0; x < VMAX; x++) {
for (int y = 0; y < VMAX; y++) {
int newX = x;
int newY = y;
if (l <= i && i <= r) {
newX ^= v;
}
if (l <= j && j <= r) {
newY ^= v;
}
newCnt[x][y] += cnt[x][y];
newCnt[newX][newY] += cnt[x][y];
}
}
for (int x = 0; x < VMAX; x++) {
for (int y = 0; y < VMAX; y++) {
cnt[x][y] = newCnt[x][y] % mod;
newCnt[x][y] = 0;
}
}
}
for (int x = 0; x < VMAX; x++) {
for (int y = 0; y < VMAX; y++) {
if (i == j) {
if (x == y) {
// if (cnt[x][x] != 0) {
// std::cout << "! " << x << ' ' << i << ' ' << cnt[x][x] << '\n';
// }
answer += (ll) cnt[x][x] * x % mod * x % mod * ways[i][j] % mod;
}
} else {
answer += (ll) 2 * cnt[x][y] * x % mod * y % mod * ways[i][j] % mod;
}
}
}
}
}
std::cout << answer % mod;
return 0;
}
Compilation message
xorsum.cpp:6:2: warning: #warning That's the baby, that's not my baby [-Wcpp]
6 | #warning That's the baby, that's not my baby
| ^~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
604 KB |
Output is correct |
2 |
Correct |
2 ms |
600 KB |
Output is correct |
3 |
Correct |
30 ms |
604 KB |
Output is correct |
4 |
Correct |
35 ms |
604 KB |
Output is correct |
5 |
Correct |
33 ms |
604 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
604 KB |
Output is correct |
2 |
Correct |
2 ms |
600 KB |
Output is correct |
3 |
Correct |
30 ms |
604 KB |
Output is correct |
4 |
Correct |
35 ms |
604 KB |
Output is correct |
5 |
Correct |
33 ms |
604 KB |
Output is correct |
6 |
Execution timed out |
2033 ms |
604 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2054 ms |
2908 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2017 ms |
600 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
516 ms |
692 KB |
Output is correct |
2 |
Correct |
498 ms |
700 KB |
Output is correct |
3 |
Correct |
501 ms |
704 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
516 ms |
692 KB |
Output is correct |
2 |
Correct |
498 ms |
700 KB |
Output is correct |
3 |
Correct |
501 ms |
704 KB |
Output is correct |
4 |
Execution timed out |
2040 ms |
860 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
604 KB |
Output is correct |
2 |
Correct |
2 ms |
600 KB |
Output is correct |
3 |
Correct |
30 ms |
604 KB |
Output is correct |
4 |
Correct |
35 ms |
604 KB |
Output is correct |
5 |
Correct |
33 ms |
604 KB |
Output is correct |
6 |
Execution timed out |
2033 ms |
604 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
604 KB |
Output is correct |
2 |
Correct |
2 ms |
600 KB |
Output is correct |
3 |
Correct |
30 ms |
604 KB |
Output is correct |
4 |
Correct |
35 ms |
604 KB |
Output is correct |
5 |
Correct |
33 ms |
604 KB |
Output is correct |
6 |
Execution timed out |
2033 ms |
604 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
604 KB |
Output is correct |
2 |
Correct |
2 ms |
600 KB |
Output is correct |
3 |
Correct |
30 ms |
604 KB |
Output is correct |
4 |
Correct |
35 ms |
604 KB |
Output is correct |
5 |
Correct |
33 ms |
604 KB |
Output is correct |
6 |
Execution timed out |
2033 ms |
604 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |