結果

問題 No.1211 円環はお断り
ユーザー shotoyooshotoyoo
提出日時 2020-08-30 16:37:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,722 ms / 2,000 ms
コード長 1,076 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 279,480 KB
最終ジャッジ日時 2024-11-23 16:25:57
合計ジャッジ時間 25,890 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 52 ms
63,744 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 52 ms
64,000 KB
testcase_10 AC 57 ms
66,560 KB
testcase_11 AC 54 ms
64,768 KB
testcase_12 AC 41 ms
59,136 KB
testcase_13 AC 806 ms
203,776 KB
testcase_14 AC 984 ms
193,408 KB
testcase_15 AC 924 ms
201,472 KB
testcase_16 AC 1,260 ms
261,760 KB
testcase_17 AC 175 ms
80,128 KB
testcase_18 AC 1,003 ms
172,032 KB
testcase_19 AC 178 ms
79,528 KB
testcase_20 AC 200 ms
81,156 KB
testcase_21 AC 193 ms
80,256 KB
testcase_22 AC 718 ms
193,448 KB
testcase_23 AC 793 ms
195,320 KB
testcase_24 AC 488 ms
164,420 KB
testcase_25 AC 110 ms
76,888 KB
testcase_26 AC 969 ms
198,988 KB
testcase_27 AC 504 ms
170,444 KB
testcase_28 AC 1,164 ms
203,844 KB
testcase_29 AC 771 ms
196,904 KB
testcase_30 AC 1,074 ms
229,912 KB
testcase_31 AC 539 ms
155,528 KB
testcase_32 AC 1,156 ms
228,780 KB
testcase_33 AC 1,287 ms
261,004 KB
testcase_34 AC 1,282 ms
261,792 KB
testcase_35 AC 1,251 ms
260,876 KB
testcase_36 AC 1,245 ms
260,256 KB
testcase_37 AC 1,295 ms
279,480 KB
testcase_38 AC 737 ms
261,664 KB
testcase_39 AC 769 ms
262,100 KB
testcase_40 AC 1,722 ms
279,140 KB
testcase_41 AC 37 ms
53,144 KB
testcase_42 AC 37 ms
52,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


n,k = list(map(int, input().split()))
a = list(map(int, input().split()))
aa = a + a
s = sum(a)
def sub(x):
    if s<x*k:
        return False
    l = [None]*n
    v = a[0]
    j = 0
    for i in range(n):
        if j<i:
            j = i
            v = aa[i]
        while v<x:
            j += 1
            v += aa[j]
        l[i] = (j-i)+1
        v -= a[i]
    kk = 1
    dp = [l]
    while kk<n:
        tmp = [(dp[-1][i]+dp[-1][(dp[-1][i]+i)%n]) for i in range(n)]
        dp.append(tmp)
        kk *= 2
    vals = [0]*n
    index = list(range(n))
    for j in range(kk):
        if (k>>j)&1:
            for i in range(n):
                vals[i] += dp[j][index[i]]
                index[i] += dp[j][index[i]]
                index[i] %= n
#     print(l, dp, x)
    return any((vals[i]<=n) for i in range(n))
ll = 0
rr = s+1
while ll<rr-1:
    m = (ll+rr)//2
    if sub(m):
        ll = m
    else:
        rr = m
print(ll)
0