結果

問題 No.2139 K Consecutive Sushi
ユーザー とりゐとりゐ
提出日時 2022-12-03 01:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,218 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,000 KB
最終ジャッジ日時 2024-05-05 19:22:11
合計ジャッジ時間 6,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 47 ms
52,608 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 220 ms
105,080 KB
testcase_04 AC 263 ms
105,324 KB
testcase_05 AC 223 ms
105,088 KB
testcase_06 AC 203 ms
104,808 KB
testcase_07 AC 221 ms
105,080 KB
testcase_08 AC 245 ms
105,592 KB
testcase_09 AC 241 ms
105,584 KB
testcase_10 AC 246 ms
105,596 KB
testcase_11 AC 240 ms
105,456 KB
testcase_12 AC 239 ms
105,852 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 39 ms
52,096 KB
testcase_17 AC 38 ms
51,968 KB
testcase_18 AC 83 ms
76,544 KB
testcase_19 AC 80 ms
74,752 KB
testcase_20 AC 71 ms
71,424 KB
testcase_21 AC 41 ms
57,600 KB
testcase_22 AC 91 ms
76,416 KB
testcase_23 AC 109 ms
77,952 KB
testcase_24 AC 143 ms
85,504 KB
testcase_25 AC 213 ms
102,528 KB
testcase_26 AC 102 ms
78,208 KB
testcase_27 AC 141 ms
84,688 KB
testcase_28 AC 144 ms
84,608 KB
testcase_29 AC 116 ms
79,616 KB
testcase_30 AC 144 ms
88,368 KB
testcase_31 AC 242 ms
109,440 KB
testcase_32 AC 106 ms
79,744 KB
testcase_33 AC 207 ms
112,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segtree():
  def __init__(self,init,func,ide):
    self.n=len(init)
    self.func=func
    self.ide=ide
    self.size=1<<(self.n-1).bit_length()
    self.tree=[self.ide for i in range(2*self.size)]
    for i in range(self.n):
      self.tree[self.size+i]=init[i]
    for i in range(self.size-1,0,-1):
      self.tree[i]=self.func(self.tree[2*i], self.tree[2*i|1])
  
  def update(self,k,x):
    k+=self.size
    self.tree[k]=x
    k>>=1
    while k:
      self.tree[k]=self.func(self.tree[2*k],self.tree[k*2|1])
      k>>=1
  
  def get(self,i):
    return self.tree[i+self.size]
  
  def query(self,l,r):
    l+=self.size
    r+=self.size
    l_res=self.ide
    r_res=self.ide
    while l<r:
      if l&1:
        l_res=self.func(l_res,self.tree[l])
        l+=1
      if r&1:
        r-=1
        r_res=self.func(self.tree[r],r_res)
      l>>=1
      r>>=1
    return self.func(l_res,r_res)
  
  def debug(self,s=10):
    print([self.get(i) for i in range(min(self.n,s))])

n,k=map(int,input().split())
a=list(map(int,input().split()))
seg=segtree([0]*n,min,10**18)
for i in range(n):
  if i<k-1:
    seg.update(i,a[i])
    continue
  mn=seg.query(i-k,i)
  seg.update(i,mn+a[i])

print(sum(a)-seg.query(n-k,n))
0