結果

問題 No.702 中央値を求めよ LIMITED
ユーザー hirokazu1020hirokazu1020
提出日時 2018-06-15 22:40:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 760 ms / 5,000 ms
コード長 1,127 bytes
コンパイル時間 1,075 ms
コンパイル使用メモリ 93,092 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-22 22:02:13
合計ジャッジ時間 23,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 746 ms
5,248 KB
testcase_01 AC 745 ms
5,248 KB
testcase_02 AC 735 ms
5,248 KB
testcase_03 AC 747 ms
5,248 KB
testcase_04 AC 741 ms
5,248 KB
testcase_05 AC 744 ms
5,248 KB
testcase_06 AC 749 ms
5,248 KB
testcase_07 AC 744 ms
5,248 KB
testcase_08 AC 745 ms
5,248 KB
testcase_09 AC 738 ms
5,248 KB
testcase_10 AC 737 ms
5,248 KB
testcase_11 AC 737 ms
5,248 KB
testcase_12 AC 740 ms
5,248 KB
testcase_13 AC 743 ms
5,248 KB
testcase_14 AC 738 ms
5,248 KB
testcase_15 AC 744 ms
5,248 KB
testcase_16 AC 745 ms
5,248 KB
testcase_17 AC 760 ms
5,248 KB
testcase_18 AC 758 ms
5,248 KB
testcase_19 AC 734 ms
5,248 KB
testcase_20 AC 742 ms
5,248 KB
testcase_21 AC 740 ms
5,248 KB
testcase_22 AC 738 ms
5,248 KB
testcase_23 AC 739 ms
5,248 KB
testcase_24 AC 739 ms
5,248 KB
testcase_25 AC 737 ms
5,248 KB
testcase_26 AC 722 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<sstream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<climits>
#include<cmath>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<numeric>
#include<functional>
#include<algorithm>
#include<bitset>
#include<tuple>
#include<unordered_set>
#include<random>
#include<array>
#include<cassert>
using namespace std;
#define INF (1<<29)
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
#define uniq(v) v.erase(unique(all(v)),v.end())

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

void init(uint32_t seed) {
	x = seed;
	y = 1;
	z = 2;
	w = 3;
}


int main(void) {
	uint32_t seed; cin >> seed;
	

	uint32_t ans = 0;
	const int n = 10000001;

	rep(i,32) {
		uint32_t mask = ans | 1 << (32 - i - 1);
		int cnt = 0;
		init(seed);
		rep(j, n) {
			cnt += generate() >= mask;
		}
		if (cnt >= (n+1) / 2)ans = mask;
	}

	cout << ans << endl;
	
	return 0;
}
0