結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 102 ms
77,512 KB
testcase_04 AC 103 ms
77,628 KB
testcase_05 AC 101 ms
77,440 KB
testcase_06 AC 104 ms
77,588 KB
testcase_07 AC 102 ms
77,460 KB
testcase_08 AC 46 ms
54,144 KB
testcase_09 AC 375 ms
151,876 KB
testcase_10 AC 280 ms
124,144 KB
testcase_11 AC 413 ms
123,384 KB
testcase_12 AC 407 ms
139,224 KB
testcase_13 AC 387 ms
120,192 KB
testcase_14 AC 424 ms
141,828 KB
testcase_15 AC 411 ms
132,804 KB
testcase_16 AC 419 ms
133,548 KB
testcase_17 AC 400 ms
138,712 KB
testcase_18 AC 406 ms
140,224 KB
testcase_19 AC 418 ms
145,488 KB
testcase_20 AC 391 ms
134,692 KB
testcase_21 AC 413 ms
128,936 KB
testcase_22 AC 408 ms
134,768 KB
testcase_23 AC 413 ms
134,612 KB
testcase_24 AC 307 ms
136,288 KB
testcase_25 AC 310 ms
135,952 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