結果

問題 No.2028 Even Choice
ユーザー ShirotsumeShirotsume
提出日時 2022-06-14 16:12:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 112,364 KB
最終ジャッジ日時 2024-10-05 07:21:20
合計ジャッジ時間 5,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
102,164 KB
testcase_01 AC 206 ms
102,168 KB
testcase_02 AC 235 ms
101,860 KB
testcase_03 AC 103 ms
112,364 KB
testcase_04 AC 128 ms
112,088 KB
testcase_05 AC 144 ms
81,456 KB
testcase_06 AC 223 ms
103,628 KB
testcase_07 AC 139 ms
83,308 KB
testcase_08 AC 196 ms
94,828 KB
testcase_09 AC 199 ms
98,120 KB
testcase_10 AC 97 ms
83,268 KB
testcase_11 AC 145 ms
80,100 KB
testcase_12 AC 132 ms
78,216 KB
testcase_13 AC 161 ms
100,668 KB
testcase_14 AC 164 ms
82,676 KB
testcase_15 AC 35 ms
53,280 KB
testcase_16 AC 39 ms
52,864 KB
testcase_17 AC 38 ms
52,456 KB
testcase_18 AC 41 ms
55,080 KB
testcase_19 AC 42 ms
59,444 KB
testcase_20 AC 49 ms
63,388 KB
testcase_21 AC 46 ms
62,072 KB
testcase_22 AC 43 ms
60,136 KB
testcase_23 AC 40 ms
53,892 KB
testcase_24 AC 35 ms
52,824 KB
testcase_25 AC 34 ms
53,272 KB
testcase_26 AC 37 ms
54,156 KB
testcase_27 AC 37 ms
54,096 KB
testcase_28 AC 80 ms
95,516 KB
testcase_29 AC 67 ms
86,248 KB
testcase_30 AC 61 ms
78,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
class Heap():
    def __init__(self, maxi = False):
        self.sum = 0
        self.al = []
        self.maxi = maxi
        self.len = 0

    def __len__(self):
        return len(self.al)

    def add(self, x):
        if self.maxi:
            heapq.heappush(self.al, -x)
        else:
            heapq.heappush(self.al, x)
        self.sum += x
    
    def pop(self):
        if self.maxi:
            now = heapq.heappop(self.al)
            self.sum += now
            return -now
        else:
            now = heapq.heappop(self.al)
            self.sum -= now
            return now

    def top(self):
        now = self.pop()
        self.add(now)
        return now
def solve(n, k, a):
    Q = Heap()
    ans = 0
    for i in range(n - 1, -1, -1):
        if i % 2 == 1 and len(Q) == k - 1:
            ans = max(ans, a[i] + Q.sum)
        Q.add(a[i])
        if len(Q) >= k:
            Q.pop()
    return ans

n, k = map(int,input().split())

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

print(solve(n, k , a))
0