結果

問題 No.2139 K Consecutive Sushi
ユーザー titiatitia
提出日時 2022-12-03 00:28:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 914 bytes
コンパイル時間 728 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 110,564 KB
最終ジャッジ日時 2024-10-10 02:49:31
合計ジャッジ時間 7,183 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,820 KB
testcase_01 AC 37 ms
53,340 KB
testcase_02 AC 35 ms
53,188 KB
testcase_03 AC 255 ms
104,064 KB
testcase_04 AC 268 ms
104,060 KB
testcase_05 AC 261 ms
104,188 KB
testcase_06 AC 254 ms
104,112 KB
testcase_07 AC 258 ms
104,224 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 251 ms
104,576 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 37 ms
52,836 KB
testcase_14 AC 37 ms
53,948 KB
testcase_15 AC 38 ms
52,376 KB
testcase_16 AC 37 ms
53,424 KB
testcase_17 AC 37 ms
52,280 KB
testcase_18 AC 76 ms
76,832 KB
testcase_19 AC 81 ms
76,484 KB
testcase_20 AC 79 ms
76,456 KB
testcase_21 WA -
testcase_22 AC 86 ms
76,776 KB
testcase_23 AC 110 ms
78,048 KB
testcase_24 AC 149 ms
85,580 KB
testcase_25 AC 207 ms
102,072 KB
testcase_26 AC 115 ms
78,212 KB
testcase_27 AC 154 ms
84,148 KB
testcase_28 AC 155 ms
84,000 KB
testcase_29 AC 124 ms
79,492 KB
testcase_30 AC 155 ms
87,712 KB
testcase_31 AC 241 ms
108,320 KB
testcase_32 AC 121 ms
79,888 KB
testcase_33 AC 212 ms
110,564 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<<30

    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