結果

問題 No.1708 Quality of Contest
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-16 02:43:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 157,892 KB
最終ジャッジ日時 2024-09-17 19:16:01
合計ジャッジ時間 7,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,504 KB
testcase_01 AC 40 ms
54,144 KB
testcase_02 AC 40 ms
55,936 KB
testcase_03 AC 84 ms
77,372 KB
testcase_04 AC 84 ms
77,196 KB
testcase_05 AC 86 ms
77,384 KB
testcase_06 AC 74 ms
77,140 KB
testcase_07 AC 80 ms
77,596 KB
testcase_08 AC 40 ms
54,664 KB
testcase_09 AC 274 ms
157,892 KB
testcase_10 AC 265 ms
147,072 KB
testcase_11 AC 290 ms
146,436 KB
testcase_12 AC 295 ms
151,168 KB
testcase_13 AC 282 ms
142,592 KB
testcase_14 AC 303 ms
153,992 KB
testcase_15 AC 315 ms
156,932 KB
testcase_16 AC 316 ms
156,532 KB
testcase_17 AC 310 ms
151,508 KB
testcase_18 AC 312 ms
153,292 KB
testcase_19 AC 312 ms
154,028 KB
testcase_20 AC 304 ms
151,268 KB
testcase_21 AC 309 ms
156,420 KB
testcase_22 AC 306 ms
153,964 KB
testcase_23 AC 325 ms
157,312 KB
testcase_24 AC 263 ms
132,368 KB
testcase_25 AC 271 ms
132,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,x = map(int, input().split())
AB = []
for i in range(n):
    a, b = map(int, input().split())
    b -= 1
    AB.append((a, b))
k = int(input())
C = list(map(int, input().split()))
from itertools import accumulate
imos = [0]*(n+1)
for c in C:
    imos[0] += 1
    imos[c] -= 1
imos = list(accumulate(imos))
from collections import defaultdict
d = defaultdict(lambda: [])
for a, b in AB:
    d[b].append(a)
L = []
for k, l in d.items():
    l.sort(reverse=True)
    l[0] += x
    L += l
L.sort(reverse=True)
ans = 0
for i in range(n):
    ans += imos[i]*L[i]
print(ans)
0