제출 #342518

#제출 시각아이디문제언어결과실행 시간메모리
342518dxz05Intergalactic ship (IZhO19_xorsum)C++14
9 / 100
2077 ms2412 KiB
//#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; void debug_out() { cerr << endl; } template<typename Head, typename... Tail> void debug_out(Head H, Tail... T) { cerr << "[" << H << "]"; debug_out(T...); } #ifdef dddxxz #define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__) #else #define debug(...) 42 #endif #define SZ(s) ((int)s.size()) clock_t startTime; double getCurrentTime() { return (double) (clock() - startTime) / CLOCKS_PER_SEC; } typedef long long ll; //mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count()); const double eps = 0.00001; const int MOD = 1e9 + 7; const int INF = 1000000101; const long long LLINF = 1223372000000000555; const int N = 2e6 + 4e4; const int M = 1234; const int LOG = 19; int a[N], b[N]; int l[N], r[N], x[N]; void solve(int TC) { int n; cin >> n; for (int i = 1; i <= n; i++){ cin >> a[i]; } int q; cin >> q; for (int i = 0; i < q; i++){ cin >> l[i] >> r[i] >> x[i]; } ll ans = 0; for (int mask = 0; mask < (1 << q); mask++){ for (int i = 1; i <= n; i++) b[i] = a[i]; for (int i = 0; i < q; i++){ if (mask & (1 << i)){ for (int j = l[i]; j <= r[i]; j++){ b[j] ^= x[i]; } } } for (int i = 1; i <= n; i++){ ll cur = 0; for (int j = i; j <= n; j++){ cur += b[j]; cur %= MOD; ans += cur * cur % MOD; } } ans %= MOD; } cout << ans; } int main() { startTime = clock(); ios_base::sync_with_stdio(false); bool llololcal = false; #ifdef dddxxz freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); llololcal = true; #endif int TC = 1; //cin >> TC; for (int test = 1; test <= TC; test++) { debug(test); solve(test); } if (llololcal) cerr << endl << "Time: " << getCurrentTime() * 1000 << " ms" << endl; return 0; }

컴파일 시 표준 에러 (stderr) 메시지

xorsum.cpp: In function 'int main()':
xorsum.cpp:18:20: warning: statement has no effect [-Wunused-value]
   18 | #define debug(...) 42
      |                    ^~
xorsum.cpp:98:9: note: in expansion of macro 'debug'
   98 |         debug(test);
      |         ^~~~~
#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...