結果

問題 No.1708 Quality of Contest
ユーザー tktk_snsntktk_snsn
提出日時 2021-10-16 15:06:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,993 ms / 2,000 ms
コード長 900 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 62,316 KB
最終ジャッジ日時 2024-12-20 10:01:11
合計ジャッジ時間 35,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 49 ms
11,648 KB
testcase_04 AC 53 ms
11,776 KB
testcase_05 AC 52 ms
11,776 KB
testcase_06 AC 47 ms
11,520 KB
testcase_07 AC 46 ms
11,648 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 1,639 ms
51,380 KB
testcase_10 AC 1,959 ms
61,420 KB
testcase_11 AC 1,993 ms
60,576 KB
testcase_12 AC 1,962 ms
60,772 KB
testcase_13 AC 1,961 ms
60,148 KB
testcase_14 AC 1,968 ms
60,860 KB
testcase_15 AC 1,742 ms
61,348 KB
testcase_16 AC 1,847 ms
61,480 KB
testcase_17 AC 1,900 ms
62,136 KB
testcase_18 AC 1,887 ms
62,316 KB
testcase_19 AC 1,827 ms
62,176 KB
testcase_20 AC 1,828 ms
61,920 KB
testcase_21 AC 1,796 ms
61,044 KB
testcase_22 AC 1,784 ms
60,788 KB
testcase_23 AC 1,766 ms
61,340 KB
testcase_24 AC 1,928 ms
59,708 KB
testcase_25 AC 1,957 ms
59,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import heapq
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


N, M, X = map(int, input().split())
P = []
for _ in range(N):
    a, b = map(int, input().split())
    b -= 1
    P.append((-a, b))

used = [False] * M
order = []
heapq.heapify(P)
Q = []


def push(que):
    a, b = heapq.heappop(que)
    used[b] = True
    order.append((-a, b))


for _ in range(N):
    while P and used[P[0][1]]:
        heapq.heappush(Q, heapq.heappop(P))
    if P and Q:
        if (-P[0][0] + X) > -Q[0][0]:
            push(P)
        else:
            push(Q)
    elif P:
        push(P)
    else:
        push(Q)

K = int(input())
C = Counter(map(int, input().split()))
ans = 0
used = [False] * M
score = 0
for i, (a, b) in enumerate(order, 1):
    score += a
    if not used[b]:
        score += X
    used[b] = True
    ans += C[i] * score

print(ans)
0