結果

問題 No.2890 Chiffon
ユーザー vwxyzvwxyz
提出日時 2024-09-13 22:43:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 198,764 KB
最終ジャッジ日時 2024-09-13 22:43:48
合計ジャッジ時間 6,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 38 ms
52,072 KB
testcase_14 AC 38 ms
51,584 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 WA -
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 38 ms
52,608 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 214 ms
198,764 KB
testcase_23 AC 42 ms
58,240 KB
testcase_24 AC 41 ms
57,728 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 49 ms
61,184 KB
testcase_27 AC 39 ms
52,480 KB
testcase_28 AC 45 ms
57,600 KB
testcase_29 AC 41 ms
57,600 KB
testcase_30 AC 47 ms
60,928 KB
testcase_31 AC 48 ms
61,568 KB
testcase_32 AC 49 ms
61,740 KB
testcase_33 AC 111 ms
126,208 KB
testcase_34 AC 111 ms
126,080 KB
testcase_35 AC 110 ms
126,208 KB
testcase_36 AC 110 ms
126,080 KB
testcase_37 AC 110 ms
126,412 KB
testcase_38 AC 108 ms
126,336 KB
testcase_39 AC 119 ms
126,464 KB
testcase_40 AC 124 ms
126,464 KB
testcase_41 AC 121 ms
126,336 KB
testcase_42 AC 122 ms
126,464 KB
testcase_43 AC 114 ms
128,060 KB
testcase_44 AC 113 ms
128,000 KB
testcase_45 AC 112 ms
128,128 KB
testcase_46 AC 112 ms
128,256 KB
testcase_47 AC 111 ms
128,384 KB
testcase_48 AC 124 ms
126,080 KB
testcase_49 AC 128 ms
126,464 KB
testcase_50 AC 127 ms
126,464 KB
testcase_51 AC 126 ms
126,336 KB
testcase_52 AC 126 ms
127,872 KB
testcase_53 AC 48 ms
58,112 KB
testcase_54 AC 95 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Bisect_Int(ok,ng,is_ok):
    while abs(ok-ng)>1:
        mid=(ok+ng)//2
        if is_ok(mid):
            ok=mid
        else:
            ng=mid
    return ok

N,K=map(int,input().split())
A=list(map(int,input().split()))
D=[b-a for a,b in zip(A,A[1:])]
D.append(2*N-sum(D))
mi=min(D)
i=D.index(mi)
D=D[i:]+D[:i]
for i in range(K):
    D[i]//=2
C=[0]+D
for i in range(1,K+1):
    C[i]+=C[i-1]
def is_ok(d):
    for s in range(C[1]):
        cur=0
        for k in range(1,K):
            cur+=d
            if cur<C[k]:
                cur=C[k]
            elif C[k+1]<=cur:
                return False
        cur+=d
        if cur<=s+N:
            return True
    return False
ans=Bisect_Int(0,N+1,is_ok)*2
print(ans)
0