結果

問題 No.702 中央値を求めよ LIMITED
ユーザー 👑 obakyanobakyan
提出日時 2021-06-07 23:40:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,870 ms / 5,000 ms
コード長 1,220 bytes
コンパイル時間 878 ms
コンパイル使用メモリ 78,644 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 00:17:21
合計ジャッジ時間 54,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,866 ms
5,248 KB
testcase_01 AC 1,870 ms
5,376 KB
testcase_02 AC 1,866 ms
5,376 KB
testcase_03 AC 1,866 ms
5,376 KB
testcase_04 AC 1,861 ms
5,376 KB
testcase_05 AC 1,864 ms
5,376 KB
testcase_06 AC 1,868 ms
5,376 KB
testcase_07 AC 1,867 ms
5,376 KB
testcase_08 AC 1,867 ms
5,376 KB
testcase_09 AC 1,870 ms
5,376 KB
testcase_10 AC 1,866 ms
5,376 KB
testcase_11 AC 1,865 ms
5,376 KB
testcase_12 AC 1,866 ms
5,376 KB
testcase_13 AC 1,868 ms
5,376 KB
testcase_14 AC 1,867 ms
5,376 KB
testcase_15 AC 1,863 ms
5,376 KB
testcase_16 AC 1,866 ms
5,376 KB
testcase_17 AC 1,866 ms
5,376 KB
testcase_18 AC 1,867 ms
5,376 KB
testcase_19 AC 1,865 ms
5,376 KB
testcase_20 AC 1,869 ms
5,376 KB
testcase_21 AC 1,869 ms
5,376 KB
testcase_22 AC 1,866 ms
5,376 KB
testcase_23 AC 1,868 ms
5,376 KB
testcase_24 AC 1,865 ms
5,376 KB
testcase_25 AC 1,868 ms
5,376 KB
testcase_26 AC 1,867 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

extern int Measure(int RM, int CM);
extern void Pinpoint(int RP, int CP);

#include <cstdio>
#include <vector>
#include <cassert>
#include <iostream>
#include <cstdint>
#include <chrono>
#include <algorithm>
#include <map>
using namespace std;
#define I64 int64_t
#define curtime chrono::system_clock::time_point
#define getcurtime chrono::system_clock::now

uint32_t x = 0, y = 1, z = 2, w = 3;
int64_t g_seed;
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 check(uint32_t a, bool& same){
  same = false;
  uint32_t q;
  int ret = 0;
  x = g_seed;
  y = 1;
  z = 2;
  w = 3;
  for (int i = 0; i < 10000001; i++){
    q = generate();
    if(q < a){
      ret++;
    } else if(q == a){ same = true; }
  }
  return ret;
}


int main(void)
{
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  bool same = false;
  std::cin >> g_seed;
  uint32_t min, max;
  min = 0; max = 4294967295;
  while(min + 1 < max){
    uint32_t mid = (uint32_t)((((uint64_t)min + (uint64_t)max) / (uint64_t)2));
    int lownum = check(mid, same);
    if(lownum <= 5000000){
      min = mid;
    } else {
      max = mid;
    }
  }
  cout << min << endl;
}
0