結果

問題 No.1708 Quality of Contest
ユーザー wgrapewgrape
提出日時 2024-11-07 16:59:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 148,572 KB
最終ジャッジ日時 2024-11-07 16:59:13
合計ジャッジ時間 8,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,376 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 96 ms
77,568 KB
testcase_04 AC 95 ms
77,184 KB
testcase_05 AC 98 ms
77,312 KB
testcase_06 AC 94 ms
77,056 KB
testcase_07 AC 94 ms
77,440 KB
testcase_08 AC 44 ms
53,760 KB
testcase_09 AC 325 ms
148,572 KB
testcase_10 AC 276 ms
113,488 KB
testcase_11 AC 368 ms
121,640 KB
testcase_12 AC 389 ms
129,080 KB
testcase_13 AC 382 ms
132,480 KB
testcase_14 AC 381 ms
131,816 KB
testcase_15 AC 395 ms
139,704 KB
testcase_16 AC 407 ms
141,216 KB
testcase_17 AC 367 ms
128,308 KB
testcase_18 AC 372 ms
128,672 KB
testcase_19 AC 404 ms
134,304 KB
testcase_20 AC 368 ms
126,600 KB
testcase_21 AC 376 ms
132,448 KB
testcase_22 AC 382 ms
131,436 KB
testcase_23 AC 417 ms
141,248 KB
testcase_24 AC 295 ms
133,888 KB
testcase_25 AC 298 ms
133,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X = map(int,input().split())

from collections import defaultdict
dic = defaultdict(list) # 種類:値

for _ in range(N):
    a,b = map(int,input().split())
    dic[b].append(a)

qs = []
for key, value in dic.items():
    sval = sorted(value)
    sval[-1] += X
    qs += sval

qs = sorted(qs)
# 一方で、K人の管理

K = input()
C = list(map(int,input().split()))

S = [0] * (N + 1) # i問目まで解く人が何人いるか
for c in C:
    S[c] += 1
    
for i in range(N - 1, -1, -1):
    S[i] += S[i + 1]

ans = 0
for i in range(1, N + 1):
    if S[i] == 0:
        break
    ans += S[i] * qs.pop()
    
print(ans)
0