結果
問題 | No.670 log は定数 |
ユーザー | imulan |
提出日時 | 2018-03-24 00:46:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,515 ms / 4,000 ms |
コード長 | 1,303 bytes |
コンパイル時間 | 1,573 ms |
コンパイル使用メモリ | 170,820 KB |
実行使用メモリ | 15,648 KB |
最終ジャッジ日時 | 2024-06-25 02:08:36 |
合計ジャッジ時間 | 17,622 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,515 ms
15,536 KB |
testcase_01 | AC | 1,483 ms
15,548 KB |
testcase_02 | AC | 1,418 ms
15,528 KB |
testcase_03 | AC | 1,309 ms
15,560 KB |
testcase_04 | AC | 1,394 ms
15,496 KB |
testcase_05 | AC | 1,415 ms
15,556 KB |
testcase_06 | AC | 1,404 ms
15,540 KB |
testcase_07 | AC | 1,419 ms
15,480 KB |
testcase_08 | AC | 1,304 ms
15,536 KB |
testcase_09 | AC | 1,343 ms
15,648 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second #define dbg(x) cout<<#x" = "<<((x))<<endl template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;} template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;} using ull = unsigned long long; ull seed; int next() { seed = seed ^ (seed << 13); seed = seed ^ (seed >> 7); seed = seed ^ (seed << 17); return (seed >> 33); } const int B = 1<<18; const int SZ = 1<<13; vector<int> v[B]; int sum[B]; 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(); int bid = a[i]/SZ; v[bid].pb(a[i]); ++sum[bid]; } rep(i,B-1) sum[i+1] += sum[i]; ll sm = 0; for (int i = 0; i < q; i++) { int x = next(); int bid = x/SZ; int cnt = 0; if(bid>0) cnt = sum[bid-1]; for(int j:v[bid]) cnt += (j<x); sm ^= ll(cnt) * i; } cout << sm << endl; return 0; }