結果

問題 No.1708 Quality of Contest
ユーザー gma712gma712
提出日時 2021-11-08 21:02:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 743 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 94,144 KB
最終ジャッジ日時 2024-11-16 20:56:01
合計ジャッジ時間 55,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,000 KB
testcase_01 AC 30 ms
94,144 KB
testcase_02 AC 30 ms
16,000 KB
testcase_03 AC 116 ms
68,128 KB
testcase_04 AC 101 ms
17,280 KB
testcase_05 AC 141 ms
75,456 KB
testcase_06 AC 102 ms
17,024 KB
testcase_07 AC 88 ms
78,016 KB
testcase_08 AC 28 ms
16,000 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, M, X = map(int, input().split(' '))
    ABs = [tuple(map(int, input().split(' '))) for _ in range(N)]
    K = int(input())
    Cs = list(map(int, input().split(' ')))

    genre_qualities = dict()
    for AB in ABs:
        if AB[1] in genre_qualities:
            genre_qualities[AB[1]] += [AB[0]]
        else:
            genre_qualities[AB[1]] = [AB[0]]

    values = []
    for k in genre_qualities.keys():
        genre_qualities[k] = sorted(genre_qualities[k], reverse=True)
        genre_qualities[k][0] += X
        values += genre_qualities[k]

    maximized = sorted(values, reverse=True)
    satisfactions = [sum(maximized[:C]) for C in Cs]

    print(sum(satisfactions))

if __name__ == '__main__':
    main()
0