結果

問題 No.1708 Quality of Contest
ユーザー H20H20
提出日時 2021-10-15 22:47:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 157,800 KB
最終ジャッジ日時 2024-09-17 17:53:31
合計ジャッジ時間 15,780 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,160 KB
testcase_01 AC 41 ms
54,460 KB
testcase_02 AC 38 ms
54,564 KB
testcase_03 AC 153 ms
78,852 KB
testcase_04 AC 175 ms
79,096 KB
testcase_05 AC 177 ms
79,652 KB
testcase_06 AC 140 ms
78,508 KB
testcase_07 AC 144 ms
78,744 KB
testcase_08 AC 39 ms
55,044 KB
testcase_09 AC 571 ms
157,800 KB
testcase_10 AC 417 ms
131,468 KB
testcase_11 AC 837 ms
137,356 KB
testcase_12 AC 919 ms
142,196 KB
testcase_13 AC 660 ms
125,000 KB
testcase_14 AC 937 ms
147,480 KB
testcase_15 AC 1,020 ms
141,300 KB
testcase_16 AC 844 ms
151,544 KB
testcase_17 AC 784 ms
144,360 KB
testcase_18 AC 815 ms
145,428 KB
testcase_19 AC 896 ms
148,532 KB
testcase_20 AC 733 ms
132,756 KB
testcase_21 AC 1,003 ms
150,412 KB
testcase_22 AC 924 ms
144,772 KB
testcase_23 AC 880 ms
138,892 KB
testcase_24 AC 548 ms
132,224 KB
testcase_25 AC 549 ms
132,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq 
import itertools
import collections

d = collections.defaultdict(list)

N,M,X = map(int, input().split())
for i in range(N):
    a,b = map(int, input().split())
    heapq.heappush(d[b],-a)

MQ = [(1,0)]
for k,v in d.items():
    q = heapq.heappop(v)
    heapq.heappush(MQ, (q,k))  


USED = [0]
K = int(input())
C = list(map(int, input().split()))
CNT = [0]*(N+2)
CNT[0] = K
for c in C:
    CNT[c+1]-=1
AC = list(itertools.accumulate(CNT))
ans = 0
for i in range(1,N+1):
    mused = heapq.heappop(USED)
    mqq,mqk = heapq.heappop(MQ)

    if mqk != 0 and mused>=mqq-X:
        ans -= (mqq-X)*AC[i]
        heapq.heappush(USED, mused)
        while len(d[mqk]):
            temp = heapq.heappop(d[mqk])
            heapq.heappush(USED, temp)
    else:
        ans -= mused*AC[i]
        heapq.heappush(MQ, (mqq,mqk))
print(ans)
0