結果

問題 No.2890 Chiffon
ユーザー vwxyzvwxyz
提出日時 2024-09-13 22:46:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 199,152 KB
最終ジャッジ日時 2024-09-26 14:41:31
合計ジャッジ時間 5,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 35 ms
52,240 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 40 ms
59,264 KB
testcase_09 AC 35 ms
52,608 KB
testcase_10 AC 34 ms
52,352 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 35 ms
52,096 KB
testcase_13 AC 34 ms
52,352 KB
testcase_14 AC 35 ms
51,840 KB
testcase_15 AC 35 ms
51,968 KB
testcase_16 AC 34 ms
52,224 KB
testcase_17 AC 36 ms
52,608 KB
testcase_18 AC 34 ms
52,352 KB
testcase_19 AC 34 ms
52,224 KB
testcase_20 AC 34 ms
52,352 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 34 ms
52,148 KB
testcase_23 AC 169 ms
199,152 KB
testcase_24 AC 39 ms
58,240 KB
testcase_25 AC 37 ms
58,496 KB
testcase_26 AC 35 ms
52,352 KB
testcase_27 AC 43 ms
61,700 KB
testcase_28 AC 34 ms
52,224 KB
testcase_29 AC 39 ms
57,984 KB
testcase_30 AC 39 ms
57,856 KB
testcase_31 AC 43 ms
61,440 KB
testcase_32 AC 45 ms
61,568 KB
testcase_33 AC 43 ms
62,080 KB
testcase_34 AC 97 ms
126,848 KB
testcase_35 AC 102 ms
126,848 KB
testcase_36 AC 104 ms
126,576 KB
testcase_37 AC 100 ms
126,236 KB
testcase_38 AC 99 ms
126,848 KB
testcase_39 AC 101 ms
126,196 KB
testcase_40 AC 105 ms
127,104 KB
testcase_41 AC 104 ms
126,552 KB
testcase_42 AC 102 ms
126,592 KB
testcase_43 AC 99 ms
126,976 KB
testcase_44 AC 104 ms
128,364 KB
testcase_45 AC 103 ms
128,124 KB
testcase_46 AC 103 ms
128,344 KB
testcase_47 AC 105 ms
128,044 KB
testcase_48 AC 105 ms
128,568 KB
testcase_49 AC 103 ms
126,504 KB
testcase_50 AC 105 ms
126,544 KB
testcase_51 AC 101 ms
126,700 KB
testcase_52 AC 99 ms
126,384 KB
testcase_53 AC 101 ms
127,960 KB
testcase_54 AC 40 ms
59,008 KB
testcase_55 AC 73 ms
102,528 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=s
        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