結果

問題 No.2139 K Consecutive Sushi
ユーザー ShirotsumeShirotsume
提出日時 2022-12-02 10:01:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 2,151 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 170,780 KB
最終ジャッジ日時 2024-05-05 19:20:53
合計ジャッジ時間 5,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,420 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 163 ms
157,984 KB
testcase_04 AC 155 ms
116,580 KB
testcase_05 AC 178 ms
170,680 KB
testcase_06 AC 167 ms
167,340 KB
testcase_07 AC 180 ms
170,780 KB
testcase_08 AC 156 ms
102,016 KB
testcase_09 AC 158 ms
102,144 KB
testcase_10 AC 154 ms
101,928 KB
testcase_11 AC 158 ms
101,988 KB
testcase_12 AC 154 ms
101,900 KB
testcase_13 AC 38 ms
52,608 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 36 ms
52,736 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 AC 38 ms
51,968 KB
testcase_18 AC 61 ms
67,840 KB
testcase_19 AC 51 ms
64,384 KB
testcase_20 AC 51 ms
63,104 KB
testcase_21 AC 39 ms
52,608 KB
testcase_22 AC 60 ms
67,968 KB
testcase_23 AC 77 ms
77,312 KB
testcase_24 AC 96 ms
87,800 KB
testcase_25 AC 118 ms
97,792 KB
testcase_26 AC 72 ms
77,616 KB
testcase_27 AC 90 ms
85,224 KB
testcase_28 AC 83 ms
89,196 KB
testcase_29 AC 79 ms
78,680 KB
testcase_30 AC 96 ms
92,672 KB
testcase_31 AC 142 ms
111,188 KB
testcase_32 AC 73 ms
81,412 KB
testcase_33 AC 154 ms
145,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class DSWAG():
    def __init__(self, op, e):
        self.op = op
        self.e = e
        self.top = []
        self.bottom = []
        self.topfold = [e]
        self.bottomfold = [e]
    def _pushbottom(self, x):
        self.bottom.append(x)
        self.bottomfold.append(self.op(self.bottomfold[-1], x))
    def _popbottom(self):
        self.bottomfold.pop()
        return self.bottom.pop()
    def _pushtop(self, x):
        self.top.append(x)
        self.topfold.append(self.op(x, self.topfold[-1]))
    def _poptop(self):
        self.topfold.pop()
        return self.top.pop()
    def push(self, x):
        self._pushbottom(x)
    def pushleft(self, x):
        self._pushtop(x)
    def fold(self):
        return self.op(self.topfold[-1], self.bottomfold[-1])
    def popleft(self):
        if not self.top:
            stack = []
            while self.bottom:
                x = self._popbottom()
                stack.append(x)
            n = len(stack)
            stack = stack[::-1]
            stack1 = stack[:(n+1)//2]
            stack2 = stack[(n+1)//2:][::-1]
            for _ in range((n + 1) // 2):
                self._pushtop(stack1.pop())
            for _ in range(n // 2):
                self._pushbottom(stack2.pop())
        if not self.top:
            return self.e
        else:
            return self._poptop()
    def pop(self):
        if not self.bottom:
            stack = []
            while self.top:
                x = self._poptop()
                stack.append(x)
            n = len(stack)
            stack1 = stack[:n//2]
            stack2 = stack[n//2:][::-1]
            for _ in range((n+1) // 2):
                self._pushbottom(stack2.pop())
            for _ in range(n // 2):
                self._pushtop(stack1.pop())
        if not self.bottom:
            return self.e
        else:
            return self._popbottom()

inf = 10 ** 15
n, k = map(int,input().split())

a = list(map(int,input().split()))

ans = sum(a)
S = DSWAG(min, inf)
for i in range(k):
    S.push(a[i])

for i in range(k, n):
    S.push(S.fold() + a[i])
    S.popleft()

ans -= S.fold()

print(ans)


0