結果

問題 No.1708 Quality of Contest
ユーザー puznekopuzneko
提出日時 2021-11-05 01:03:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 825 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 184,392 KB
最終ジャッジ日時 2024-10-15 07:38:19
合計ジャッジ時間 14,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,384 KB
testcase_01 AC 41 ms
54,740 KB
testcase_02 AC 40 ms
53,096 KB
testcase_03 AC 106 ms
77,132 KB
testcase_04 AC 109 ms
77,288 KB
testcase_05 AC 109 ms
77,060 KB
testcase_06 AC 99 ms
76,724 KB
testcase_07 AC 100 ms
76,824 KB
testcase_08 AC 40 ms
53,060 KB
testcase_09 AC 397 ms
184,392 KB
testcase_10 AC 756 ms
166,148 KB
testcase_11 AC 825 ms
166,096 KB
testcase_12 AC 682 ms
166,396 KB
testcase_13 AC 721 ms
166,348 KB
testcase_14 AC 680 ms
166,288 KB
testcase_15 AC 610 ms
166,272 KB
testcase_16 AC 640 ms
166,368 KB
testcase_17 AC 709 ms
166,004 KB
testcase_18 AC 708 ms
166,676 KB
testcase_19 AC 685 ms
166,120 KB
testcase_20 AC 706 ms
166,288 KB
testcase_21 AC 659 ms
166,028 KB
testcase_22 AC 651 ms
166,500 KB
testcase_23 AC 630 ms
166,484 KB
testcase_24 AC 760 ms
165,904 KB
testcase_25 AC 755 ms
166,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from heapq import heappush, heappop

n, m, x, *indata = map(int, stdin.read().split())
offset = 0
hq = []
janru = [0 for i in range(n)]
appeared = [0 for i in range(n)]
for i in range(n):
    s, t = indata[offset + 2*i],indata[offset + 2*i+1]
    heappush(hq, (-(s+x),i))
    janru[i] = t

used = [0 for i in range(m+1)]
manzoku = [0]
while hq:
    score, ind = heappop(hq)
    score = -score
    if (appeared[ind] == 0) & (used[janru[ind]] >= 1):
        heappush(hq,(-score+x,ind))
        appeared[ind] = 1
    else:
        kari = manzoku[-1] + score
        used[janru[ind]] += 1
        manzoku.append(kari)

ans = 0
offset += n * 2
k = indata[offset]
for i in range(1,k+1):
    ans += manzoku[indata[offset+i]]
print("{}".format(ans))
0