// 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);
}
}
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 = bit(x, p1) + (bit(x, p2) << 1);
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[0] = mem[msk][n][1];
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] -= cur[1];
cur[0] -= cur[2];
cur[0] -= cur[3];
for (int msk2 = 0; msk2 < 4; ++msk2) {
cnt[(msk & msk2)] += cur[msk2];
}
}
int cur = 0;
for (int x = 0; x < 2; ++x) {
if (x > cnt[1]) {
continue;
}
for (int y = 0; y < 2; ++y) {
if (y > cnt[2]) {
continue;
}
for (int z = 0; z < 2; ++z) {
if (z > cnt[3]) {
continue;
}
if ((bitA ^ x ^ z) == 1 && (bitB ^ y ^ z) == 1) {
++cur;
}
}
}
}
for (int i = 1; i < 4; ++i) {
cur = mulMod(cur, pw[max(0, cnt[i] - 1)]);
}
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:161:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &n);
~~~~~^~~~~~~~~~
xorsum.cpp:164:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &arr[i]);
~~~~~^~~~~~~~~~~~~~~
xorsum.cpp:167:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &q);
~~~~~^~~~~~~~~~
xorsum.cpp:171: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);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
19 ms |
1152 KB |
Output is correct |
2 |
Correct |
19 ms |
1280 KB |
Output is correct |
3 |
Correct |
21 ms |
1408 KB |
Output is correct |
4 |
Correct |
19 ms |
1408 KB |
Output is correct |
5 |
Correct |
19 ms |
1408 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
19 ms |
1152 KB |
Output is correct |
2 |
Correct |
19 ms |
1280 KB |
Output is correct |
3 |
Correct |
21 ms |
1408 KB |
Output is correct |
4 |
Correct |
19 ms |
1408 KB |
Output is correct |
5 |
Correct |
19 ms |
1408 KB |
Output is correct |
6 |
Correct |
55 ms |
4224 KB |
Output is correct |
7 |
Correct |
54 ms |
4332 KB |
Output is correct |
8 |
Correct |
54 ms |
4332 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
119 ms |
5588 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2094 ms |
32632 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
23 ms |
2048 KB |
Output is correct |
2 |
Correct |
22 ms |
2048 KB |
Output is correct |
3 |
Correct |
22 ms |
2048 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
23 ms |
2048 KB |
Output is correct |
2 |
Correct |
22 ms |
2048 KB |
Output is correct |
3 |
Correct |
22 ms |
2048 KB |
Output is correct |
4 |
Correct |
25 ms |
2048 KB |
Output is correct |
5 |
Correct |
26 ms |
2048 KB |
Output is correct |
6 |
Correct |
30 ms |
2048 KB |
Output is correct |
7 |
Correct |
26 ms |
2040 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
19 ms |
1152 KB |
Output is correct |
2 |
Correct |
19 ms |
1280 KB |
Output is correct |
3 |
Correct |
21 ms |
1408 KB |
Output is correct |
4 |
Correct |
19 ms |
1408 KB |
Output is correct |
5 |
Correct |
19 ms |
1408 KB |
Output is correct |
6 |
Correct |
55 ms |
4224 KB |
Output is correct |
7 |
Correct |
54 ms |
4332 KB |
Output is correct |
8 |
Correct |
54 ms |
4332 KB |
Output is correct |
9 |
Correct |
23 ms |
2048 KB |
Output is correct |
10 |
Correct |
22 ms |
2048 KB |
Output is correct |
11 |
Correct |
22 ms |
2048 KB |
Output is correct |
12 |
Correct |
57 ms |
4296 KB |
Output is correct |
13 |
Correct |
56 ms |
4216 KB |
Output is correct |
14 |
Correct |
69 ms |
4216 KB |
Output is correct |
15 |
Correct |
61 ms |
4216 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
19 ms |
1152 KB |
Output is correct |
2 |
Correct |
19 ms |
1280 KB |
Output is correct |
3 |
Correct |
21 ms |
1408 KB |
Output is correct |
4 |
Correct |
19 ms |
1408 KB |
Output is correct |
5 |
Correct |
19 ms |
1408 KB |
Output is correct |
6 |
Correct |
55 ms |
4224 KB |
Output is correct |
7 |
Correct |
54 ms |
4332 KB |
Output is correct |
8 |
Correct |
54 ms |
4332 KB |
Output is correct |
9 |
Correct |
23 ms |
2048 KB |
Output is correct |
10 |
Correct |
22 ms |
2048 KB |
Output is correct |
11 |
Correct |
22 ms |
2048 KB |
Output is correct |
12 |
Correct |
25 ms |
2048 KB |
Output is correct |
13 |
Correct |
26 ms |
2048 KB |
Output is correct |
14 |
Correct |
30 ms |
2048 KB |
Output is correct |
15 |
Correct |
26 ms |
2040 KB |
Output is correct |
16 |
Correct |
57 ms |
4296 KB |
Output is correct |
17 |
Correct |
56 ms |
4216 KB |
Output is correct |
18 |
Correct |
69 ms |
4216 KB |
Output is correct |
19 |
Correct |
61 ms |
4216 KB |
Output is correct |
20 |
Runtime error |
1178 ms |
34296 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
21 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
19 ms |
1152 KB |
Output is correct |
2 |
Correct |
19 ms |
1280 KB |
Output is correct |
3 |
Correct |
21 ms |
1408 KB |
Output is correct |
4 |
Correct |
19 ms |
1408 KB |
Output is correct |
5 |
Correct |
19 ms |
1408 KB |
Output is correct |
6 |
Correct |
55 ms |
4224 KB |
Output is correct |
7 |
Correct |
54 ms |
4332 KB |
Output is correct |
8 |
Correct |
54 ms |
4332 KB |
Output is correct |
9 |
Incorrect |
119 ms |
5588 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |