結果

問題 No.702 中央値を求めよ LIMITED
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-08 13:58:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,027 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,640 KB
最終ジャッジ日時 2024-09-08 13:58:15
合計ジャッジ時間 12,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/702

import heapq

MAX = 2 ** 32 - 1

class Generator:

    def __init__(self, seed):
        self.x = seed
        self.y = 1
        self.z = 2
        self.w = 3

    def generate(self):
        t = (self.x ^ (self.x << 11)) & MAX
        self.x = self.y
        self.y = self.z
        self.z = self.w
        self.w = ((self.w ^ (self.w >> 19)) ^ (t ^ (t >> 8))) & MAX
        return self.w
    
def solve(N, seed, value):
    generator = Generator(seed)

    n2 = N // 2
    n1 = n2 + 1

    cnt = 0
    for _ in range(N):
        x = generator.generate()
        if x >= value:
            cnt += 1
    return cnt >= n1





def main():
    seed = int(input())

    N = 10000001

    low = 0
    high = 2 ** 32 - 1
    while high - low > 1:
        mid = (high + low ) // 2
        if solve(N, seed, mid):
            low = mid
        else:
            high = mid
    if solve(N, seed, high):
        print(high)
    else:
        print(low)




if __name__ == "__main__":
    main()
0