# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
287000 | tqbfjotld | Intergalactic ship (IZhO19_xorsum) | C++14 | 2075 ms | 640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |