Submission #287001

#TimeUsernameProblemLanguageResultExecution timeMemory
287001oolimryIntergalactic ship (IZhO19_xorsum)C++14
17 / 100
1087 ms194168 KiB
#include <bits/stdc++.h> #define all(x) (x).begin(), (x).end() #define sz(x) (int) (x).size() using namespace std; typedef long long lint; typedef pair<int,int> ii; int arr[1005]; struct query{ int l, r, x; }; vector<query> queries; bool in(int x, int bit){ return ((x & (1 << bit)) != 0); } lint mod = 1000000007; lint two[100005]; lint ans = 0; inline lint odd(int N){ if(N == 0) return 0; else return two[N-1]; } inline lint even(int N){ if(N == 0) return 1; else return two[N-1]; } inline void fix(lint &x){ x %= mod; } int cnt[7][7][1005][1005]; int main(){ ios_base::sync_with_stdio(false); cin.tie(0); lint n; cin >> n; for(int i = 1;i <= n;i++) cin >> arr[i]; int Q; cin >> Q; for(int q = 0;q < Q;q++){ queries.push_back({}); query &QQ = queries.back(); cin >> QQ.l >> QQ.r >> QQ.x; } for(query q : queries){ int l = q.l, r = q.r, x = q.x; for(int bit = 0;bit < 7;bit++){ for(int bit2 = 0;bit2 < 7;bit2++){ if(!in(x, bit) || !in(x, bit2)) continue; cnt[bit][bit2][l][r]++; } } } for(int bit = 0;bit < 7;bit++){ for(int bit2 = 0;bit2 < 7;bit2++){ for(int l = 1;l <= n;l++){ for(int r = n;r >= l;r--){ cnt[bit][bit2][l][r] += cnt[bit][bit2][l-1][r]; cnt[bit][bit2][l][r] += cnt[bit][bit2][l][r+1]; cnt[bit][bit2][l][r] -= cnt[bit][bit2][l-1][r+1]; } } } } two[0] = 1; for(int i = 1;i <= 100004;i++) two[i] = (two[i-1] * 2); for(lint a = 1;a <= n;a++){ for(lint b = a;b <= n;b++){ for(int aBit = 0;aBit < 7;aBit++){ for(int bBit = 0;bBit < 7;bBit++){ lint none = 0; lint onlyA = cnt[aBit][aBit][a][a]; lint onlyB = cnt[bBit][bBit][b][b]; lint both = cnt[aBit][bBit][a][b]; onlyA -= both; onlyB -= both; none = Q - onlyA - onlyB - both; ///don't use "both" lint res = two[none] * two[aBit + bBit]; fix(res); res *= min(a,b) * (n - max(a,b) + 1); fix(res); if(in(arr[a], aBit)) res *= even(onlyA); else res *= odd(onlyA); fix(res); if(in(arr[b], bBit)) res *= even(onlyB); else res *= odd(onlyB); fix(res); res *= even(both); fix(res); if(a != b) res *= 2; ans += res; fix(ans); ///use "both" res = two[none] * two[aBit + bBit]; fix(res); res *= min(a,b) * (n - max(a,b) + 1); fix(res); if(in(arr[a], aBit)) res *= odd(onlyA); else res *= even(onlyA); fix(res); if(in(arr[b], bBit)) res *= odd(onlyB); else res *= even(onlyB); fix(res); res *= odd(both); fix(res); if(a != b) res *= 2; ans += res; fix(ans); } } } } cout << ans << "\n"; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...