結果
問題 | No.702 中央値を求めよ LIMITED |
ユーザー | te-sh |
提出日時 | 2018-07-04 10:13:38 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 986 bytes |
コンパイル時間 | 1,159 ms |
コンパイル使用メモリ | 102,528 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-13 01:22:26 |
合計ジャッジ時間 | 5,528 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 141 ms
5,376 KB |
testcase_05 | AC | 141 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 141 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 140 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 141 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 141 ms
5,376 KB |
testcase_22 | AC | 140 ms
5,376 KB |
testcase_23 | AC | 141 ms
5,376 KB |
testcase_24 | AC | 141 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string; auto rdsp(){return readln.splitter;} void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;} void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);} const n = 10000001; void main() { uint seed; readV(seed); init(seed); auto a = new int[](1<<16); foreach (_; 0..n) { auto r = generate(); ++a[r>>16]; } auto i = 0, s = 0; for (; i < (1<<16); ++i) { if (s+a[i] >= (n+1)/2) break; s += a[i]; } init(seed); a[] = 0; foreach (_; 0..n) { auto r = generate(); if ((r>>16) == i) ++a[r&((1<<16)-1)]; } foreach (j; 0..1<<16) { s += a[j]; if (s >= (n+1)/2) { writeln((i<<16)|j); return; } } } uint x, y, z, w; void init(uint seed) { x = seed; y = 1; z = 2; w = 3; } uint generate() { uint t = (x^(x<<11)); x = y; y = z; z = w; w = (w^(w>>19))^(t^(t>>8)); return w; }