結果
問題 | No.670 log は定数 |
ユーザー | Pachicobue |
提出日時 | 2018-07-28 04:36:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 966 bytes |
コンパイル時間 | 1,958 ms |
コンパイル使用メモリ | 204,552 KB |
実行使用メモリ | 10,240 KB |
最終ジャッジ日時 | 2024-07-05 18:14:05 |
合計ジャッジ時間 | 4,486 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
//================================= // Created on: 2018/07/28 04:24:07 //================================= #include <bits/stdc++.h> #define show(x) std::cerr << #x << " = " << x << std::endl using ll = long long; using ull = unsigned long long; int main() { int N, Q; ull seed; std::cin >> N >> Q >> seed; int B = 1 << 1, S = 1 << 31; for (; B < N; B <<= 1, S >>= 1) {} std::vector<std::vector<int>> in(B); auto next = [&]() { return seed = seed ^ (seed << 13), seed = seed ^ (seed >> 7), seed = seed ^ (seed << 17), (seed >> 33); }; for (int i = 0; i < 10000; i++) next(); std::vector<int> A(N); for (int i = 0; i < N; i++) { A[i] = next(), in[A[i] / S].push_back(A[i]); } ll ans = 0; for (int i = 0; i < Q; i++) { const int x = next(), b = x / S; int sub = 0; for (const int e : in[b]) { sub += (e == x ? 1 : 0); } ans ^= sub; } std::cout << ans << std::endl; return 0; }