結果

問題 No.1708 Quality of Contest
ユーザー H20H20
提出日時 2021-10-15 22:43:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 840 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 157,652 KB
最終ジャッジ日時 2024-09-17 17:51:13
合計ジャッジ時間 15,310 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,240 KB
testcase_01 AC 39 ms
54,808 KB
testcase_02 AC 39 ms
55,136 KB
testcase_03 AC 150 ms
78,864 KB
testcase_04 AC 170 ms
79,604 KB
testcase_05 AC 175 ms
79,704 KB
testcase_06 AC 139 ms
78,392 KB
testcase_07 AC 139 ms
78,608 KB
testcase_08 AC 42 ms
55,536 KB
testcase_09 AC 547 ms
157,652 KB
testcase_10 AC 390 ms
131,400 KB
testcase_11 AC 759 ms
137,184 KB
testcase_12 AC 829 ms
141,936 KB
testcase_13 AC 611 ms
125,132 KB
testcase_14 AC 877 ms
147,612 KB
testcase_15 AC 947 ms
142,052 KB
testcase_16 AC 776 ms
151,536 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 967 ms
150,548 KB
testcase_22 AC 994 ms
144,628 KB
testcase_23 AC 813 ms
138,900 KB
testcase_24 AC 496 ms
132,052 KB
testcase_25 AC 494 ms
132,324 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 = [(0,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