結果

問題 No.1708 Quality of Contest
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 18:18:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 151,740 KB
最終ジャッジ日時 2024-12-18 00:29:36
合計ジャッジ時間 9,658 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,464 KB
testcase_01 AC 40 ms
54,248 KB
testcase_02 AC 39 ms
55,396 KB
testcase_03 AC 85 ms
77,708 KB
testcase_04 AC 87 ms
77,572 KB
testcase_05 AC 85 ms
77,456 KB
testcase_06 AC 87 ms
77,388 KB
testcase_07 AC 88 ms
77,544 KB
testcase_08 AC 39 ms
54,508 KB
testcase_09 AC 330 ms
151,740 KB
testcase_10 AC 264 ms
124,144 KB
testcase_11 AC 373 ms
123,504 KB
testcase_12 AC 375 ms
139,320 KB
testcase_13 AC 338 ms
120,256 KB
testcase_14 AC 378 ms
141,700 KB
testcase_15 AC 368 ms
132,576 KB
testcase_16 AC 380 ms
133,668 KB
testcase_17 AC 356 ms
139,076 KB
testcase_18 AC 361 ms
140,220 KB
testcase_19 AC 374 ms
145,484 KB
testcase_20 AC 358 ms
134,820 KB
testcase_21 AC 373 ms
129,064 KB
testcase_22 AC 369 ms
134,536 KB
testcase_23 AC 383 ms
134,484 KB
testcase_24 AC 287 ms
136,180 KB
testcase_25 AC 292 ms
136,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 新ジャンルボーナスを各ジャンルごとの最高点のものにX点加算
# それからK回ナップザックをやったら間に合わない
# ナップザックをやらずに貪欲法、最高値c個を取る

N, M, X = map(int, input().split())
from collections import defaultdict
genre = defaultdict(list)
for i in range(N):
    a, b = map(int, input().split())
    genre[b].append(a)
    
all_list = []
for g in genre:
    temp = sorted(genre[g], reverse = True)
    for i in range(len(temp)):
        if i == 0:
            all_list.append(temp[i]+X)
        else:
            all_list.append(temp[i])

all_list.sort(reverse = True)

#print(all_list)

cumu = [0]
temp = 0
for i in range(N):
    temp += all_list[i]
    cumu.append(temp)
    
#print(cumu)

K = int(input())
C = list(map(int, input().split()))
ans = 0
for c in C:
    ans += cumu[c]
print(ans)
0