結果
| 問題 |
No.2028 Even Choice
|
| コンテスト | |
| ユーザー |
vwxyz
|
| 提出日時 | 2022-09-22 02:12:58 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,249 bytes |
| コンパイル時間 | 189 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 35,276 KB |
| 最終ジャッジ日時 | 2024-12-22 04:37:31 |
| 合計ジャッジ時間 | 9,568 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 WA * 2 |
ソースコード
import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
heap.append(item)
heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
if heap and item < heap[0]:
item, heap[0] = heap[0], item
heapq._siftup_max(heap, 0)
return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write
N,K=map(int,readline().split())
A=list(map(int,readline().split()))
A1=[(A[i],-i) for i in range(1,N,2)]
_heapify_max(A1)
ans=0
min_i=N-1
queue=[]
while K and A1:
a,i=_heappop_max(A1)
i=-i
if i<min_i:
for j in range(i+1,min_i+1,2):
_heappush_max(queue,A[j])
min_i=i
ans+=a
K-=1
else:
_heappush_max(queue,a)
while K and queue and queue[0]>=a:
ans+=queue[0]
_heappop_max(queue)
K-=1
while K:
ans+=queue[0]
_heappop_max(queue)
K-=1
assert K==0
print(ans)
vwxyz