結果

問題 No.2139 K Consecutive Sushi
ユーザー H3PO4H3PO4
提出日時 2022-12-20 21:37:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,493 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 113,792 KB
最終ジャッジ日時 2024-11-18 02:08:38
合計ジャッジ時間 6,646 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 252 ms
113,348 KB
testcase_04 AC 253 ms
113,340 KB
testcase_05 AC 257 ms
113,792 KB
testcase_06 AC 252 ms
113,280 KB
testcase_07 AC 257 ms
113,580 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 260 ms
113,076 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 40 ms
52,736 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 40 ms
52,352 KB
testcase_18 AC 85 ms
76,544 KB
testcase_19 AC 87 ms
76,460 KB
testcase_20 AC 85 ms
76,144 KB
testcase_21 WA -
testcase_22 AC 98 ms
76,160 KB
testcase_23 AC 126 ms
78,080 KB
testcase_24 AC 156 ms
85,692 KB
testcase_25 AC 216 ms
102,656 KB
testcase_26 AC 127 ms
78,464 KB
testcase_27 AC 147 ms
84,352 KB
testcase_28 AC 153 ms
85,036 KB
testcase_29 AC 135 ms
79,964 KB
testcase_30 AC 162 ms
88,320 KB
testcase_31 AC 246 ms
109,524 KB
testcase_32 AC 128 ms
80,316 KB
testcase_33 AC 228 ms
112,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline


class SegmentTree:
    """
    https://qiita.com/dn6049949/items/afa12d5d079f518de368 から拝借しています。
    """

    def __init__(self, size, f=lambda x, y: min(x, y), default=10 ** 9 + 7):
        self.size = 2 ** (size - 1).bit_length()
        self.default = default
        self.dat = [default] * (self.size * 2)
        self.f = f

    def initialize(self, A):
        for i, a in enumerate(A, self.size):
            self.dat[i] = a
        for i in range(self.size - 1, 0, -1):
            self.dat[i] = self.f(self.dat[i * 2], self.dat[i * 2 + 1])

    def update(self, i, x):
        i += self.size
        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,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


N, K = map(int, input().split())
A = tuple(map(int, input().split()))
dp = SegmentTree(N + 1)
dp.update(0, 0)
for i, a in enumerate(A, 1):
    dp.update(i, dp.query(max(0, i - K), i) + a)
print(sum(A) - dp.query(N + 1 - K, N + 1))
0