結果

問題 No.702 中央値を求めよ LIMITED
ユーザー ありあり
提出日時 2023-02-23 11:50:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 650 ms / 5,000 ms
コード長 827 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 88,864 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 08:40:18
合計ジャッジ時間 19,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 620 ms
6,812 KB
testcase_01 AC 618 ms
6,812 KB
testcase_02 AC 616 ms
6,940 KB
testcase_03 AC 622 ms
6,944 KB
testcase_04 AC 621 ms
6,940 KB
testcase_05 AC 610 ms
6,944 KB
testcase_06 AC 632 ms
6,944 KB
testcase_07 AC 615 ms
6,944 KB
testcase_08 AC 619 ms
6,944 KB
testcase_09 AC 619 ms
6,944 KB
testcase_10 AC 617 ms
6,940 KB
testcase_11 AC 617 ms
6,944 KB
testcase_12 AC 617 ms
6,940 KB
testcase_13 AC 618 ms
6,944 KB
testcase_14 AC 617 ms
6,940 KB
testcase_15 AC 617 ms
6,944 KB
testcase_16 AC 650 ms
6,944 KB
testcase_17 AC 617 ms
6,940 KB
testcase_18 AC 615 ms
6,940 KB
testcase_19 AC 634 ms
6,944 KB
testcase_20 AC 615 ms
6,944 KB
testcase_21 AC 636 ms
6,944 KB
testcase_22 AC 617 ms
6,944 KB
testcase_23 AC 620 ms
6,944 KB
testcase_24 AC 621 ms
6,944 KB
testcase_25 AC 620 ms
6,944 KB
testcase_26 AC 615 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <vector>
#include <string>
#include <set>
#include <map>
#include <algorithm>
#include <numeric>
#include <queue>
#include <cassert>
#include <cmath>
#include <bitset>
using namespace std;

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;
}

int main() {
  int64_t seed; cin >> seed; 
  long long ok = 10000000000;
  long long ng = -1;
  while (ng + 1 < ok) {
    long long m = (ok + ng) / 2;
    int cnt = 0;
    x = seed, y = 1, z = 2, w = 3;
    for (int i = 0; i < 10000001; i++) {
      long long a = generate();
      if (a <= m) cnt++;
    }
    if (cnt <= 10000001/2) ng = m;
    else ok = m;
  }
  cout << ok << endl;
  return 0;
}
0