結果
問題 | No.670 log は定数 |
ユーザー | mamekin |
提出日時 | 2018-03-26 09:09:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,875 ms / 4,000 ms |
コード長 | 1,360 bytes |
コンパイル時間 | 1,036 ms |
コンパイル使用メモリ | 110,784 KB |
実行使用メモリ | 9,984 KB |
最終ジャッジ日時 | 2024-06-25 06:40:49 |
合計ジャッジ時間 | 21,180 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,751 ms
9,856 KB |
testcase_01 | AC | 1,738 ms
9,848 KB |
testcase_02 | AC | 1,745 ms
9,984 KB |
testcase_03 | AC | 1,738 ms
9,956 KB |
testcase_04 | AC | 1,745 ms
9,856 KB |
testcase_05 | AC | 1,729 ms
9,864 KB |
testcase_06 | AC | 1,790 ms
9,808 KB |
testcase_07 | AC | 1,875 ms
9,856 KB |
testcase_08 | AC | 1,868 ms
9,856 KB |
testcase_09 | AC | 1,846 ms
9,856 KB |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> #include <iterator> using namespace std; unsigned long long seed; int next() { seed ^= seed << 13; seed ^= seed >> 7; seed ^= seed << 17; return seed >> 33; } const int MAX = INT_MAX; const int SIZE = 20000; int main() { int n, q; cin >> n >> q >> seed; for(int i=0; i<10000; ++i) next(); vector<int> a(n); for(int i=0; i<n; ++i) a[i] = next(); sort(a.begin(), a.end()); vector<int> cnt(MAX / SIZE + 2, 0); vector<vector<int> > v(MAX / SIZE + 1); for(int i=0; i<n; ++i){ ++ cnt[a[i]/SIZE+1]; v[a[i]/SIZE].push_back(a[i]); } for(int i=0; i<=MAX/SIZE; ++i) cnt[i+1] += cnt[i]; long long ans = 0; for(int i=0; i<q; ++i){ int x = next(); int y = cnt[x/SIZE]; y += lower_bound(v[x/SIZE].begin(), v[x/SIZE].end(), x) - v[x/SIZE].begin(); ans ^= y * (long long)i; } cout << ans << endl; return 0; }