結果

問題 No.2139 K Consecutive Sushi
ユーザー titiatitia
提出日時 2022-12-03 00:32:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 110,464 KB
最終ジャッジ日時 2024-05-05 19:21:51
合計ジャッジ時間 6,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 253 ms
103,664 KB
testcase_04 AC 249 ms
103,780 KB
testcase_05 AC 246 ms
104,168 KB
testcase_06 AC 237 ms
104,172 KB
testcase_07 AC 255 ms
103,980 KB
testcase_08 AC 211 ms
103,924 KB
testcase_09 AC 236 ms
104,308 KB
testcase_10 AC 228 ms
104,436 KB
testcase_11 AC 230 ms
104,172 KB
testcase_12 AC 218 ms
104,180 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 36 ms
51,584 KB
testcase_15 AC 36 ms
51,584 KB
testcase_16 AC 37 ms
51,712 KB
testcase_17 AC 36 ms
51,840 KB
testcase_18 AC 81 ms
76,416 KB
testcase_19 AC 87 ms
76,672 KB
testcase_20 AC 84 ms
76,160 KB
testcase_21 AC 41 ms
57,088 KB
testcase_22 AC 92 ms
76,320 KB
testcase_23 AC 117 ms
78,080 KB
testcase_24 AC 150 ms
85,120 KB
testcase_25 AC 205 ms
101,248 KB
testcase_26 AC 124 ms
78,336 KB
testcase_27 AC 150 ms
83,968 KB
testcase_28 AC 157 ms
84,224 KB
testcase_29 AC 126 ms
79,488 KB
testcase_30 AC 151 ms
87,936 KB
testcase_31 AC 230 ms
108,160 KB
testcase_32 AC 126 ms
79,872 KB
testcase_33 AC 208 ms
110,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))

seg_el=1<<((N+2).bit_length()) # Segment treeの台の要素数
SEG=[1<<62]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

def update(n,x,seg_el): # A[n]をxへ更新
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=min(SEG[i*2],SEG[i*2+1])
        i>>=1

def getvalues(l,r): # 区間[l,r)に関するminを調べる
    L=l+seg_el
    R=r+seg_el
    ANS=1<<62

    while L<R:
        if L & 1:
            ANS=min(ANS , SEG[L])
            L+=1

        if R & 1:
            R-=1
            ANS=min(ANS , SEG[R])
        L>>=1
        R>>=1

    return ANS

update(0,0,seg_el)

for i in range(N):
    a=A[i]
    u=getvalues(max(0,i+1-K),i+1)

    update(i+1,u+a,seg_el)

ANS=[getvalues(i,i+1) for i in range(N+2)]

AS=getvalues(N+1-K,N+1)

print(sum(A)-AS)
    
0