結果

問題 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,779 ms / 2,000 ms
コード長 900 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 62,292 KB
最終ジャッジ日時 2024-05-14 17:37:00
合計ジャッジ時間 31,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 47 ms
11,776 KB
testcase_04 AC 52 ms
11,648 KB
testcase_05 AC 50 ms
11,776 KB
testcase_06 AC 44 ms
11,648 KB
testcase_07 AC 45 ms
11,520 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 1,451 ms
51,512 KB
testcase_10 AC 1,718 ms
61,820 KB
testcase_11 AC 1,736 ms
60,496 KB
testcase_12 AC 1,672 ms
60,732 KB
testcase_13 AC 1,720 ms
60,396 KB
testcase_14 AC 1,637 ms
60,904 KB
testcase_15 AC 1,489 ms
61,632 KB
testcase_16 AC 1,592 ms
61,544 KB
testcase_17 AC 1,711 ms
62,208 KB
testcase_18 AC 1,668 ms
62,276 KB
testcase_19 AC 1,655 ms
62,292 KB
testcase_20 AC 1,779 ms
62,192 KB
testcase_21 AC 1,537 ms
60,932 KB
testcase_22 AC 1,550 ms
61,008 KB
testcase_23 AC 1,565 ms
61,576 KB
testcase_24 AC 1,747 ms
59,632 KB
testcase_25 AC 1,745 ms
59,736 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