# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
287000 | 2020-08-31T08:51:30 Z | tqbfjotld | Intergalactic ship (IZhO19_xorsum) | C++14 | 2000 ms | 640 KB |
#include <bits/stdc++.h> using namespace std; #define int long long ///subtask 3 (i hope) int MOD = 1000000007LL; int modinv(int a); int fastExp(int b, int a){ if (a<0) return modinv(fastExp(b,-a)); if (a==0) return 1; if (a&1) return (b*fastExp(b,a-1))%MOD; int t = fastExp(b,a>>1); return (t*t)%MOD; } int modinv(int a){ return fastExp(a,MOD-2); } int orig[1005]; int occ[1005][35]; int l[100005]; int r[100005]; int v[100005]; int newv[1005]; main(){ int n; scanf("%lld",&n); for (int x = 1; x<=n; x++){ scanf("%lld",&orig[x]); } int q; scanf("%lld",&q); if ((n<=30 && q<=20) || (n<=100 && q<=10)){ for (int x = 0; x<q; x++){ scanf("%lld%lld%lld",&l[x],&r[x],&v[x]); } long long ans = 0; for (int bitmask = 0; bitmask<(1<<q); bitmask++){ for (int x = 1; x<=n; x++){ newv[x] = orig[x]; } for (int x = 0; x<q; x++){ if (bitmask & (1<<x)){ for (int y = l[x]; y<=r[x]; y++){ newv[y] ^= v[x]; } } } long long something = 0; long long tans = 0; for (int x = 1; x<=n; x++){ tans += newv[x]*newv[x]*x*(n-x+1); tans += 2*newv[x]*(n-x+1)*something; tans %= 1000000007LL; something += newv[x]*x; something %= 1000000007LL; } ans += tans; ans %= 1000000007LL; } printf("%lld",ans); return 0; } for (int x = 1; x<=n; x++){ for (int y = 0; y<32; y++){ if (orig[x]==y){ occ[x][y] = fastExp(2,q); } else occ[x][y] = 0; } } for (int x = 0; x<q; x++){ int a,b,c; scanf("%lld%lld%lld",&a,&b,&c); vector<int> temp; for (int x = a; x<=b; x++){ temp.clear(); for (int y = 0; y<32; y++) temp.push_back((modinv(2)*occ[x][y^c])%MOD); for (int y = 0; y<32; y++){ occ[x][y] *= modinv(2); occ[x][y]%=MOD; occ[x][y] += temp[y]; occ[x][y]%=MOD; } } } long long something = 0; long long tans = 0; for (int x = 1; x<=n; x++){ int toAdd = 0; for (int y = 0; y<32; y++){ int mult = occ[x][y]; tans += (y*y*x*(n-x+1)*mult)%MOD; tans += (2*y*(n-x+1)*something*mult)%MOD; tans %= 1000000007LL; toAdd += (y)*((fastExp(2,-q)*mult)%MOD)*x; toAdd %= 1000000007LL; } something += toAdd; } printf("%lld",tans); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 0 ms | 256 KB | Output is correct |
3 | Correct | 1 ms | 384 KB | Output is correct |
4 | Correct | 1 ms | 384 KB | Output is correct |
5 | Correct | 1 ms | 384 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 0 ms | 256 KB | Output is correct |
3 | Correct | 1 ms | 384 KB | Output is correct |
4 | Correct | 1 ms | 384 KB | Output is correct |
5 | Correct | 1 ms | 384 KB | Output is correct |
6 | Correct | 1 ms | 384 KB | Output is correct |
7 | Correct | 2 ms | 416 KB | Output is correct |
8 | Correct | 1 ms | 384 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2075 ms | 384 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 52 ms | 640 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 414 ms | 504 KB | Output is correct |
2 | Correct | 435 ms | 384 KB | Output is correct |
3 | Correct | 396 ms | 504 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 414 ms | 504 KB | Output is correct |
2 | Correct | 435 ms | 384 KB | Output is correct |
3 | Correct | 396 ms | 504 KB | Output is correct |
4 | Incorrect | 1631 ms | 384 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 0 ms | 256 KB | Output is correct |
3 | Correct | 1 ms | 384 KB | Output is correct |
4 | Correct | 1 ms | 384 KB | Output is correct |
5 | Correct | 1 ms | 384 KB | Output is correct |
6 | Correct | 1 ms | 384 KB | Output is correct |
7 | Correct | 2 ms | 416 KB | Output is correct |
8 | Correct | 1 ms | 384 KB | Output is correct |
9 | Correct | 414 ms | 504 KB | Output is correct |
10 | Correct | 435 ms | 384 KB | Output is correct |
11 | Correct | 396 ms | 504 KB | Output is correct |
12 | Incorrect | 289 ms | 400 KB | Output isn't correct |
13 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 0 ms | 256 KB | Output is correct |
3 | Correct | 1 ms | 384 KB | Output is correct |
4 | Correct | 1 ms | 384 KB | Output is correct |
5 | Correct | 1 ms | 384 KB | Output is correct |
6 | Correct | 1 ms | 384 KB | Output is correct |
7 | Correct | 2 ms | 416 KB | Output is correct |
8 | Correct | 1 ms | 384 KB | Output is correct |
9 | Correct | 414 ms | 504 KB | Output is correct |
10 | Correct | 435 ms | 384 KB | Output is correct |
11 | Correct | 396 ms | 504 KB | Output is correct |
12 | Incorrect | 1631 ms | 384 KB | Output isn't correct |
13 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 0 ms | 256 KB | Output is correct |
3 | Correct | 1 ms | 384 KB | Output is correct |
4 | Correct | 1 ms | 384 KB | Output is correct |
5 | Correct | 1 ms | 384 KB | Output is correct |
6 | Correct | 1 ms | 384 KB | Output is correct |
7 | Correct | 2 ms | 416 KB | Output is correct |
8 | Correct | 1 ms | 384 KB | Output is correct |
9 | Execution timed out | 2075 ms | 384 KB | Time limit exceeded |
10 | Halted | 0 ms | 0 KB | - |