# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
551114 | 2022-04-19T22:16:30 Z | Olympia | XOR Sum (info1cup17_xorsum) | C++17 | 1600 ms | 8380 KB |
#include <iostream> #include <vector> #include <iomanip> #include <algorithm> #include <cassert> #include <map> #include <complex> #include <cmath> #include <set> #include <queue> using namespace std; #pragma GCC target ("avx2") #pragma GCC optimization ("O3") #pragma GCC optimization ("unroll-loops") int64_t res (vector<int>& a, int x) { //how many are <= x int64_t r = a.size() - 1; int64_t ans = 0; for (int i = 0; i < a.size(); i++) { if (a[i] + a[0] > x) { break; } while (a[r] + a[i] > x) { r--; } ans += abs(r) + 1 - (r >= i); } ans /= 2; for (int i = 0; i < a.size(); i++) { ans += (2 * a[i] <= x); } return ans; } int res (vector<int>& a, int l, int r) { return res(a, r) - res(a, l - 1); } int main () { ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; vector<int> v(n); for (int i = 0; i < n; i++) { cin >> v[i]; } int ans = 0; for (int b = 0; b < 32; b++) { vector<int> a(n); for (int i = 0; i < a.size(); i++) { a[i] = v[i] & ((1 << (b + 1)) - 1); } sort(a.begin(), a.end()); int64_t r = 0; r += res(a, (1 << b), (1 << (b + 1)) - 1); r += res(a, (1 << b) + (1 << (b + 1)), (1 << (b + 2)) - 1); ans += (1 << b) * (r % 2); } cout << ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 10 ms | 340 KB | Output is correct |
2 | Correct | 10 ms | 392 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1672 ms | 8380 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1672 ms | 8380 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 10 ms | 340 KB | Output is correct |
2 | Correct | 10 ms | 392 KB | Output is correct |
3 | Incorrect | 250 ms | 1364 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 10 ms | 340 KB | Output is correct |
2 | Correct | 10 ms | 392 KB | Output is correct |
3 | Execution timed out | 1672 ms | 8380 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |