結果

問題 No.2139 K Consecutive Sushi
ユーザー tassei903tassei903
提出日時 2022-12-03 10:22:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 2,040 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-05-05 19:22:42
合計ジャッジ時間 6,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 291 ms
104,804 KB
testcase_04 AC 286 ms
104,380 KB
testcase_05 AC 287 ms
104,296 KB
testcase_06 AC 289 ms
104,688 KB
testcase_07 AC 292 ms
104,676 KB
testcase_08 AC 239 ms
104,556 KB
testcase_09 AC 243 ms
104,548 KB
testcase_10 AC 245 ms
103,912 KB
testcase_11 AC 231 ms
104,428 KB
testcase_12 AC 235 ms
104,036 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 81 ms
76,544 KB
testcase_19 AC 84 ms
76,160 KB
testcase_20 AC 81 ms
76,288 KB
testcase_21 AC 45 ms
59,136 KB
testcase_22 AC 96 ms
76,160 KB
testcase_23 AC 134 ms
77,824 KB
testcase_24 AC 165 ms
84,864 KB
testcase_25 AC 226 ms
101,632 KB
testcase_26 AC 136 ms
77,952 KB
testcase_27 AC 164 ms
83,968 KB
testcase_28 AC 166 ms
83,840 KB
testcase_29 AC 146 ms
79,488 KB
testcase_30 AC 180 ms
87,424 KB
testcase_31 AC 271 ms
108,160 KB
testcase_32 AC 144 ms
79,872 KB
testcase_33 AC 249 ms
109,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
inf = 10**18
class SegmentTree:
    # 初期化処理
    # f : SegmentTreeにのせるモノイド
    # default : fに対する単位元
    def __init__(self, size, f=lambda x,y : min(x,y), default=inf):
        self.size = 2**(size-1).bit_length() # 簡単のため要素数Nを2冪にする
        self.default = default
        self.dat = [default]*(self.size*2) # 要素を単位元で初期化
        self.f = f
 
    def update(self, i, x):
        i += self.size
        self.dat[i] = self.f(self.dat[i], x)
        while i > 0:
            i >>= 1
            self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1])
 
    def query(self, l, r):
        l += self.size
        r += self.size
        lres, rres = self.default, self.default
        while l < r:
            if l & 1:
                lres = self.f(lres, self.dat[l])
                l += 1
 
            if r & 1:
                r -= 1
                rres = self.f(self.dat[r], rres) # モノイドでは可換律は保証されていないので演算の方向に注意
            l >>= 1
            r >>= 1
        res = self.f(lres, rres)
        return res
 
    def query2(self):
        s = 1
        #print(self.size)
        while s<self.size:
            #print(s)
            if self.dat[s*2]>self.dat[s*2+1]:
                s = s*2
            else:
                s = s*2+1
        return s-self.size

n, k = na()

a = na()

dp = SegmentTree(n+1)
dp.update(0, 0)

for i in range(n):
    dp.update(i+1, dp.query(max(i - k + 1, 0), i + 1) + a[i])

    #print(*[dp.query(i, i+1) for i in range(n+1)])
ans = float("inf")
for i in range(k):
    ans = min(ans, dp.query(n-i, n+1-i))
print(sum(a)-ans)
0