結果

問題 No.1708 Quality of Contest
ユーザー FromBooskaFromBooska
提出日時 2023-03-17 15:13:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 150,168 KB
最終ジャッジ日時 2024-09-18 09:59:52
合計ジャッジ時間 12,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 78 ms
74,484 KB
testcase_04 AC 80 ms
76,800 KB
testcase_05 AC 82 ms
76,688 KB
testcase_06 AC 74 ms
73,516 KB
testcase_07 AC 75 ms
73,880 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 303 ms
150,168 KB
testcase_10 AC 506 ms
136,964 KB
testcase_11 AC 549 ms
136,848 KB
testcase_12 AC 514 ms
137,564 KB
testcase_13 AC 529 ms
137,496 KB
testcase_14 AC 521 ms
139,008 KB
testcase_15 AC 523 ms
144,392 KB
testcase_16 AC 546 ms
145,108 KB
testcase_17 AC 513 ms
138,224 KB
testcase_18 AC 530 ms
139,232 KB
testcase_19 AC 542 ms
141,324 KB
testcase_20 AC 559 ms
138,624 KB
testcase_21 AC 546 ms
140,956 KB
testcase_22 AC 542 ms
140,156 KB
testcase_23 AC 547 ms
144,032 KB
testcase_24 AC 495 ms
138,516 KB
testcase_25 AC 515 ms
138,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ナップザックの変形かと思ったが違うみたい
# ABC116D Various Sushiのようにもできない
# なんらかの貪欲法で並べることが必要
# 与えられたABリストを、初めてのグループであれば+X点として新リスト作成
# ソート、カウント累積和で高速化で総和計算

N, M, X = map(int, input().split())
AB = []
for i in range(N):
    a, b = map(int, input().split())
    AB.append([a, b])
K = int(input())
C = list(map(int, input().split()))

AB.sort(key = lambda x:x[0], reverse = True)
#print(AB)

genre = set()
AB_adjusted = []
for a, b in AB:
    if b not in genre:
        genre.add(b)
        AB_adjusted.append(a+X)
    else:
        AB_adjusted.append(a)

AB_adjusted.sort(reverse = True)

count = [0]*(N+2)
for c in C:
    count[1] += 1
    count[c+1] -= 1
for i in range(1, N+2):
    count[i] += count[i-1]

#print(AB_adjusted)
#print(count)

ans = 0
for i in range(N):
    ans += AB_adjusted[i]*count[i+1]
print(ans)
0