結果
問題 | No.702 中央値を求めよ LIMITED |
ユーザー | treeone |
提出日時 | 2018-07-26 23:41:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,150 ms / 5,000 ms |
コード長 | 1,088 bytes |
コンパイル時間 | 1,836 ms |
コンパイル使用メモリ | 167,688 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 09:45:28 |
合計ジャッジ時間 | 53,667 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,721 ms
5,248 KB |
testcase_01 | AC | 1,842 ms
5,248 KB |
testcase_02 | AC | 1,728 ms
5,376 KB |
testcase_03 | AC | 1,829 ms
5,376 KB |
testcase_04 | AC | 1,856 ms
5,376 KB |
testcase_05 | AC | 1,860 ms
5,376 KB |
testcase_06 | AC | 1,926 ms
5,376 KB |
testcase_07 | AC | 1,863 ms
5,376 KB |
testcase_08 | AC | 1,875 ms
5,376 KB |
testcase_09 | AC | 1,791 ms
5,376 KB |
testcase_10 | AC | 1,878 ms
5,376 KB |
testcase_11 | AC | 1,848 ms
5,376 KB |
testcase_12 | AC | 1,731 ms
5,376 KB |
testcase_13 | AC | 1,866 ms
5,376 KB |
testcase_14 | AC | 1,844 ms
5,376 KB |
testcase_15 | AC | 1,835 ms
5,376 KB |
testcase_16 | AC | 1,877 ms
5,376 KB |
testcase_17 | AC | 1,816 ms
5,376 KB |
testcase_18 | AC | 1,875 ms
5,376 KB |
testcase_19 | AC | 2,150 ms
5,376 KB |
testcase_20 | AC | 1,808 ms
5,376 KB |
testcase_21 | AC | 1,866 ms
5,376 KB |
testcase_22 | AC | 1,579 ms
5,376 KB |
testcase_23 | AC | 1,623 ms
5,376 KB |
testcase_24 | AC | 1,827 ms
5,376 KB |
testcase_25 | AC | 1,912 ms
5,376 KB |
testcase_26 | AC | 1,917 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, a, n) for(int i = a; i < n; i++) #define int long long using namespace std; const int INF = 1e15; const int MAX = 100010; uint32_t x = 0, y = 1, z = 2, w = 3; uint32_t generate() { uint32_t t = (x^(x<<11)); x = y; y = z; z = w; w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)); return w; } signed main(){ int n = 10000001; int64_t seed; cin >> seed; x = seed; // uint32_t a[10000001]; int l = 0, r = 1e10, ans = -1; // for (int i = 0; i < n; i++) { // a[i] = generate(); // cout << a[i] << endl; // } int idx = (n + 1) / 2; while(1){ int m = (l + r) / 2; int less = 0, eq = 0; x = seed; y = 1, z = 2, w = 3; rep(i, 0, n){ int tmp = generate(); if(tmp < m) less++; else if(tmp == m) eq++; } // cout << m << ' ' << less << ' ' << eq << endl; if(less >= idx) r = m; else if(less + eq < idx) l = m; else{ ans = m; break; } } cout << ans << endl; }