結果

問題 No.2028 Even Choice
ユーザー ShirotsumeShirotsume
提出日時 2022-07-04 01:09:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,264 KB
最終ジャッジ日時 2024-05-09 22:54:38
合計ジャッジ時間 6,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
32,756 KB
testcase_01 AC 276 ms
32,756 KB
testcase_02 AC 360 ms
32,628 KB
testcase_03 AC 209 ms
33,260 KB
testcase_04 AC 227 ms
33,264 KB
testcase_05 AC 78 ms
15,592 KB
testcase_06 AC 302 ms
30,500 KB
testcase_07 AC 89 ms
16,524 KB
testcase_08 AC 241 ms
24,168 KB
testcase_09 AC 211 ms
26,524 KB
testcase_10 AC 78 ms
16,592 KB
testcase_11 AC 83 ms
14,472 KB
testcase_12 AC 49 ms
12,288 KB
testcase_13 AC 183 ms
28,060 KB
testcase_14 AC 118 ms
16,772 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 28 ms
11,008 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 29 ms
10,880 KB
testcase_22 AC 28 ms
10,880 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 AC 28 ms
10,880 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 AC 165 ms
24,972 KB
testcase_29 AC 117 ms
20,152 KB
testcase_30 AC 90 ms
17,136 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