結果

問題 No.1708 Quality of Contest
ユーザー gr1msl3ygr1msl3y
提出日時 2021-10-15 22:02:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 950 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 149,260 KB
最終ジャッジ日時 2024-09-17 17:30:43
合計ジャッジ時間 17,327 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,888 KB
testcase_01 AC 47 ms
54,144 KB
testcase_02 AC 47 ms
54,592 KB
testcase_03 AC 148 ms
78,716 KB
testcase_04 AC 169 ms
78,984 KB
testcase_05 AC 153 ms
78,564 KB
testcase_06 AC 138 ms
78,184 KB
testcase_07 AC 139 ms
78,320 KB
testcase_08 AC 44 ms
53,888 KB
testcase_09 AC 573 ms
145,140 KB
testcase_10 AC 783 ms
148,532 KB
testcase_11 AC 927 ms
148,524 KB
testcase_12 AC 910 ms
147,668 KB
testcase_13 AC 846 ms
147,564 KB
testcase_14 AC 950 ms
148,856 KB
testcase_15 AC 819 ms
148,920 KB
testcase_16 AC 895 ms
149,260 KB
testcase_17 AC 847 ms
145,356 KB
testcase_18 AC 906 ms
145,224 KB
testcase_19 AC 872 ms
143,664 KB
testcase_20 AC 929 ms
145,636 KB
testcase_21 AC 807 ms
148,308 KB
testcase_22 AC 861 ms
148,576 KB
testcase_23 AC 947 ms
148,944 KB
testcase_24 AC 860 ms
147,588 KB
testcase_25 AC 821 ms
147,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import heapq as hq
N, M, X = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(N)]
K = int(input())
C = list(map(int, input().split()))
D = Counter(C)

INF = 10**9
qual = 0
ct = 0
set1 = [(INF, 0)]
set2 = [(INF, 0)]
for a, b in A:
    hq.heappush(set2, (-a, b))
S = set()
ans = 0
for i in range(1, N+1):
    while set2[0][1] in S:
        a = hq.heappop(set2)
        hq.heappush(set1, a)
    v = -set1[0][0]
    w = -set2[0][0]
    if v <= w+X:
        qual += w
        ct += 1
        S.add(set2[0][1])
        hq.heappop(set2)
    else:
        qual += v
        hq.heappop(set1)
    ans += D[i]*(qual+ct*X)

print(ans)
0