結果

問題 No.1708 Quality of Contest
ユーザー O2MTO2MT
提出日時 2021-10-15 23:09:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 790 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 151,048 KB
最終ジャッジ日時 2024-09-17 18:10:23
合計ジャッジ時間 14,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,092 KB
testcase_01 AC 34 ms
53,408 KB
testcase_02 AC 37 ms
54,380 KB
testcase_03 AC 116 ms
77,924 KB
testcase_04 AC 127 ms
77,748 KB
testcase_05 AC 134 ms
78,312 KB
testcase_06 AC 109 ms
78,120 KB
testcase_07 AC 114 ms
77,680 KB
testcase_08 AC 40 ms
53,364 KB
testcase_09 AC 569 ms
151,048 KB
testcase_10 AC 333 ms
130,676 KB
testcase_11 AC 761 ms
135,120 KB
testcase_12 AC 716 ms
135,328 KB
testcase_13 AC 695 ms
119,688 KB
testcase_14 AC 721 ms
133,008 KB
testcase_15 AC 737 ms
143,212 KB
testcase_16 AC 745 ms
144,900 KB
testcase_17 AC 785 ms
138,704 KB
testcase_18 AC 755 ms
143,988 KB
testcase_19 AC 744 ms
133,152 KB
testcase_20 AC 704 ms
139,328 KB
testcase_21 AC 736 ms
127,320 KB
testcase_22 AC 766 ms
132,960 KB
testcase_23 AC 790 ms
144,908 KB
testcase_24 AC 511 ms
126,776 KB
testcase_25 AC 527 ms
128,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from heapq import *

N,M,X = map(int,input().split())
D = {}

for _ in range(N):
  a,b = map(int,input().split())
  a = -a-X
  if b not in D:
    D[b] = [a]
  else:
    heappush(D[b],a)

K = int(input())
C = list(map(int,input().split()))
imos = [0]*(N+1)

for c in C:
  imos[0] += 1
  imos[c] -= 1

ac_imos = list(accumulate(imos))
E = []

for k,v in D.items():
  n = heappop(v)
  heappush(E,(n,k))

ans = 0

for c in ac_imos:
  if not E:
    break

  a,b = heappop(E)
  ans += -a*c
  
  if D[b]:
    d = heappop(D[b])
    d += X
    heappush(E,(d,b))

print(ans)
0