結果

問題 No.576 E869120 and Rings
ユーザー maspymaspy
提出日時 2020-05-08 23:48:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 751 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 133,352 KB
最終ジャッジ日時 2024-07-04 01:17:49
合計ジャッジ時間 30,022 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,034 ms
82,180 KB
testcase_01 AC 1,027 ms
82,240 KB
testcase_02 AC 1,020 ms
81,692 KB
testcase_03 AC 1,004 ms
82,232 KB
testcase_04 AC 1,024 ms
82,024 KB
testcase_05 AC 1,030 ms
81,760 KB
testcase_06 AC 1,018 ms
81,588 KB
testcase_07 AC 1,004 ms
81,828 KB
testcase_08 AC 1,017 ms
82,044 KB
testcase_09 AC 1,018 ms
81,900 KB
testcase_10 AC 1,014 ms
81,864 KB
testcase_11 AC 1,046 ms
82,192 KB
testcase_12 AC 1,015 ms
81,996 KB
testcase_13 AC 1,021 ms
81,016 KB
testcase_14 AC 1,026 ms
81,120 KB
testcase_15 AC 838 ms
75,280 KB
testcase_16 AC 966 ms
80,672 KB
testcase_17 AC 1,016 ms
81,184 KB
testcase_18 AC 1,017 ms
81,600 KB
testcase_19 AC 1,001 ms
81,612 KB
testcase_20 AC 1,121 ms
82,144 KB
testcase_21 AC 1,017 ms
82,008 KB
testcase_22 AC 512 ms
44,412 KB
testcase_23 WA -
testcase_24 AC 514 ms
44,484 KB
testcase_25 AC 513 ms
44,224 KB
testcase_26 WA -
testcase_27 AC 518 ms
44,232 KB
testcase_28 AC 511 ms
44,620 KB
testcase_29 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N, K = map(int, readline().split())
A = np.frombuffer(read().rstrip(), 'S1').astype(np.float64)

A = np.concatenate([A,A])

def test(A, x):
    # avg > x が可能
    A = A - x
    Acum = np.zeros(len(A) + 1, np.float64)
    Acum[1:] = np.cumsum(A)
    S = Acum[-1]
    if S > 0:
        return True
    if K <= (N // 2):
        B = np.minimum.accumulate(Acum)
        x = np.max(Acum[K:] - B[:-K])
        return x > 0
    B = np.maximum.accumulate(Acum)
    x = np.min(Acum[K:] - B[:-K])
    return S/2 - x > 0

vals = [0, 1]
for _ in range(22):
    x = sum(vals) / 2
    vals[1-test(A, x)] = x

print(vals[0])
0