結果

問題 No.1708 Quality of Contest
ユーザー tktk_snsntktk_snsn
提出日時 2021-10-16 15:05:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 950 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 62,396 KB
最終ジャッジ日時 2024-09-17 19:26:43
合計ジャッジ時間 26,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 RE -
testcase_04 AC 45 ms
11,776 KB
testcase_05 AC 44 ms
11,520 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 1,235 ms
51,324 KB
testcase_10 AC 1,475 ms
61,632 KB
testcase_11 AC 1,496 ms
60,136 KB
testcase_12 AC 1,475 ms
60,608 KB
testcase_13 AC 1,598 ms
60,360 KB
testcase_14 AC 1,517 ms
60,708 KB
testcase_15 AC 1,317 ms
61,480 KB
testcase_16 AC 1,443 ms
61,296 KB
testcase_17 AC 1,543 ms
61,844 KB
testcase_18 AC 1,471 ms
62,144 KB
testcase_19 AC 1,492 ms
62,396 KB
testcase_20 AC 1,536 ms
62,016 KB
testcase_21 AC 1,448 ms
60,692 KB
testcase_22 AC 1,420 ms
60,644 KB
testcase_23 AC 1,422 ms
61,392 KB
testcase_24 AC 1,519 ms
59,392 KB
testcase_25 AC 1,507 ms
59,372 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:
        nw = (-P[0][0] + X)
        od = -Q[0][0]
        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] * N
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