// chrono::system_clock::now().time_since_epoch().count()
#include<bits/stdc++.h>
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define fi first
#define se second
#define all(x) (x).begin(), (x).end()
#define debug(x) cerr << #x << " = " << x << endl;
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int MAXN = (int)1e3 + 5;
const int MAXQ = (int)1e5 + 5;
const int MOD = (int)1e9 + 7;
int mem[4][MAXN][MAXN];
int seg[4][MAXN][MAXN];
int pw[MAXQ], _pw[MAXQ];
array<int, 3> que[MAXN];
int dp[MAXQ][2];
int arr[MAXN];
int n, q, ans;
int addMod(int a, int b, int m = MOD) {
a += b;
if (m <= a) {
a -= m;
}
return a;
}
int mulMod(int a, int b, int m = MOD) {
return a * 1ll * b % m;
}
int binPow(int a, int b, int m = MOD) {
int ret = 1;
while (b > 0) {
if (b & 1) {
ret = mulMod(ret, a, m);
}
a = mulMod(a, a, m);
b >>= 1;
}
return ret;
}
int bit(int x, int p) {
return (x >> p) & 1;
}
void pre() {
pw[0] = _pw[0] = 1;
for (int i = 1; i < MAXQ; ++i) {
pw[i] = mulMod(pw[i - 1], 2);
_pw[i] = binPow(pw[i], MOD - 2);
}
dp[0][0] = 1;
for (int i = 1; i < MAXQ; ++i) {
for (int j = 0; j < 2; ++j) {
dp[i][j] = addMod(dp[i - 1][0], dp[i - 1][1]);
}
}
}
int calc(int p1, int p2) {
int ret = 0;
for (int i = 0; i < 4; ++i) {
for (int l = 1; l <= n; ++l) {
for (int r = 1; r <= n; ++r) {
seg[i][l][r] = 0;
mem[i][l][r] = 0;
}
}
}
for (int i = 1; i <= q; ++i) {
auto &[l, r, x] = que[i];
int msk = 0;
if (bit(x, p1)) {
msk |= 1;
}
if (bit(x, p2)) {
msk |= 2;
}
seg[msk][l][r]++;
}
for (int i = 0; i < 4; ++i) {
for (int l = 1; l <= n; ++l) {
int cur = 0;
for (int r = n; r; --r) {
cur += seg[i][l][r];
mem[i][l][r] = mem[i][l - 1][r] + cur;
}
}
}
for (int a = 1; a <= n; ++a) {
for (int b = 1; b <= n; ++b) {
array<int, 4> cnt = {0, 0, 0, 0};
int bitA = bit(arr[a], p1);
int bitB = bit(arr[b], p2);
for (int msk = 0; msk < 4; ++msk) {
array<int, 4> cur;
cur[1] = mem[msk][a][a];
cur[2] = mem[msk][b][b];
cur[3] = mem[msk][min(a, b)][max(a, b)];
cur[1] -= cur[3];
cur[2] -= cur[3];
cur[0] = mem[msk][n][1];
cur[0] -= cur[1];
cur[0] -= cur[2];
cur[0] -= cur[3];
for (int msk2 = 0; msk2 < 4; ++msk2) {
cnt[(msk & msk2)] += cur[msk2];
}
}
//for (int i = 1; i <= q; ++i) {
//auto &[l, r, k] = que[i];
//int msk = 0;
//if (l <= a && a <= r && bit(k, p1)) {
//msk |= 1;
//}
//if (l <= b && b <= r && bit(k, p2)) {
//msk |= 2;
//}
//cnt[msk]++;
//}
int cur = 0;
for (int x = 0; x < 2; ++x) {
for (int y = 0; y < 2; ++y) {
for (int z = 0; z < 2; ++z) {
if ((bitA ^ x ^ z) == 1 && (bitB ^ y ^ z) == 1) {
int tmp = 1;
tmp = mulMod(tmp, dp[cnt[1]][x]);
tmp = mulMod(tmp, dp[cnt[2]][y]);
tmp = mulMod(tmp, dp[cnt[3]][z]);
cur = addMod(cur, tmp);
}
}
}
}
cur = mulMod(cur, pw[cnt[0]]);
cur = mulMod(cur, mulMod(min(a, b), n - max(a, b) + 1));
ret = addMod(ret, cur);
}
}
return ret;
}
void solve() {
scanf("%d", &n);
for (int i = 1; i <= n; ++i) {
scanf("%d", &arr[i]);
}
scanf("%d", &q);
for (int i = 1; i <= q; ++i) {
int l, r, x;
scanf("%d %d %d", &l, &r, &x);
que[i] = {l, r, x};
}
for (int a = 0; a < 7; ++a) {
for (int b = 0; b < 7; ++b) {
ans = addMod(ans, mulMod(calc(a, b), (1 << (a + b))));
}
}
printf("%d\n", ans);
}
int main() {
int tt = 1;
pre();
while (tt--) {
solve();
}
return 0;
}
Compilation message
xorsum.cpp: In function 'void solve()':
xorsum.cpp:181:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &n);
~~~~~^~~~~~~~~~
xorsum.cpp:184:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &arr[i]);
~~~~~^~~~~~~~~~~~~~~
xorsum.cpp:187:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &q);
~~~~~^~~~~~~~~~
xorsum.cpp:191:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d %d", &l, &r, &x);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
1912 KB |
Output is correct |
2 |
Correct |
20 ms |
2048 KB |
Output is correct |
3 |
Correct |
20 ms |
2176 KB |
Output is correct |
4 |
Correct |
20 ms |
2176 KB |
Output is correct |
5 |
Correct |
20 ms |
2176 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
1912 KB |
Output is correct |
2 |
Correct |
20 ms |
2048 KB |
Output is correct |
3 |
Correct |
20 ms |
2176 KB |
Output is correct |
4 |
Correct |
20 ms |
2176 KB |
Output is correct |
5 |
Correct |
20 ms |
2176 KB |
Output is correct |
6 |
Correct |
67 ms |
5112 KB |
Output is correct |
7 |
Correct |
66 ms |
5112 KB |
Output is correct |
8 |
Correct |
64 ms |
5120 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
125 ms |
6392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2086 ms |
33408 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
24 ms |
2816 KB |
Output is correct |
2 |
Correct |
25 ms |
2816 KB |
Output is correct |
3 |
Correct |
25 ms |
2808 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
24 ms |
2816 KB |
Output is correct |
2 |
Correct |
25 ms |
2816 KB |
Output is correct |
3 |
Correct |
25 ms |
2808 KB |
Output is correct |
4 |
Correct |
27 ms |
2932 KB |
Output is correct |
5 |
Correct |
27 ms |
2944 KB |
Output is correct |
6 |
Correct |
27 ms |
2944 KB |
Output is correct |
7 |
Correct |
28 ms |
2944 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
1912 KB |
Output is correct |
2 |
Correct |
20 ms |
2048 KB |
Output is correct |
3 |
Correct |
20 ms |
2176 KB |
Output is correct |
4 |
Correct |
20 ms |
2176 KB |
Output is correct |
5 |
Correct |
20 ms |
2176 KB |
Output is correct |
6 |
Correct |
67 ms |
5112 KB |
Output is correct |
7 |
Correct |
66 ms |
5112 KB |
Output is correct |
8 |
Correct |
64 ms |
5120 KB |
Output is correct |
9 |
Correct |
24 ms |
2816 KB |
Output is correct |
10 |
Correct |
25 ms |
2816 KB |
Output is correct |
11 |
Correct |
25 ms |
2808 KB |
Output is correct |
12 |
Correct |
65 ms |
5112 KB |
Output is correct |
13 |
Correct |
65 ms |
5120 KB |
Output is correct |
14 |
Correct |
66 ms |
5120 KB |
Output is correct |
15 |
Correct |
65 ms |
5112 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
1912 KB |
Output is correct |
2 |
Correct |
20 ms |
2048 KB |
Output is correct |
3 |
Correct |
20 ms |
2176 KB |
Output is correct |
4 |
Correct |
20 ms |
2176 KB |
Output is correct |
5 |
Correct |
20 ms |
2176 KB |
Output is correct |
6 |
Correct |
67 ms |
5112 KB |
Output is correct |
7 |
Correct |
66 ms |
5112 KB |
Output is correct |
8 |
Correct |
64 ms |
5120 KB |
Output is correct |
9 |
Correct |
24 ms |
2816 KB |
Output is correct |
10 |
Correct |
25 ms |
2816 KB |
Output is correct |
11 |
Correct |
25 ms |
2808 KB |
Output is correct |
12 |
Correct |
27 ms |
2932 KB |
Output is correct |
13 |
Correct |
27 ms |
2944 KB |
Output is correct |
14 |
Correct |
27 ms |
2944 KB |
Output is correct |
15 |
Correct |
28 ms |
2944 KB |
Output is correct |
16 |
Correct |
65 ms |
5112 KB |
Output is correct |
17 |
Correct |
65 ms |
5120 KB |
Output is correct |
18 |
Correct |
66 ms |
5120 KB |
Output is correct |
19 |
Correct |
65 ms |
5112 KB |
Output is correct |
20 |
Runtime error |
1312 ms |
36984 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
21 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
1912 KB |
Output is correct |
2 |
Correct |
20 ms |
2048 KB |
Output is correct |
3 |
Correct |
20 ms |
2176 KB |
Output is correct |
4 |
Correct |
20 ms |
2176 KB |
Output is correct |
5 |
Correct |
20 ms |
2176 KB |
Output is correct |
6 |
Correct |
67 ms |
5112 KB |
Output is correct |
7 |
Correct |
66 ms |
5112 KB |
Output is correct |
8 |
Correct |
64 ms |
5120 KB |
Output is correct |
9 |
Incorrect |
125 ms |
6392 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |