結果

問題 No.1708 Quality of Contest
ユーザー horitaka1999horitaka1999
提出日時 2021-10-15 22:54:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 166,684 KB
最終ジャッジ日時 2024-09-17 17:58:47
合計ジャッジ時間 12,748 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,176 KB
testcase_01 AC 44 ms
55,288 KB
testcase_02 AC 44 ms
54,544 KB
testcase_03 AC 136 ms
78,292 KB
testcase_04 AC 147 ms
78,192 KB
testcase_05 AC 154 ms
78,120 KB
testcase_06 AC 132 ms
78,308 KB
testcase_07 AC 133 ms
78,100 KB
testcase_08 AC 42 ms
55,388 KB
testcase_09 AC 396 ms
166,684 KB
testcase_10 AC 471 ms
132,568 KB
testcase_11 AC 620 ms
129,396 KB
testcase_12 AC 617 ms
132,192 KB
testcase_13 AC 616 ms
126,152 KB
testcase_14 AC 622 ms
133,132 KB
testcase_15 AC 609 ms
139,240 KB
testcase_16 AC 615 ms
139,488 KB
testcase_17 AC 618 ms
134,272 KB
testcase_18 AC 626 ms
136,112 KB
testcase_19 AC 617 ms
136,608 KB
testcase_20 AC 642 ms
133,604 KB
testcase_21 AC 633 ms
134,560 KB
testcase_22 AC 627 ms
133,040 KB
testcase_23 AC 634 ms
139,056 KB
testcase_24 AC 522 ms
125,088 KB
testcase_25 AC 512 ms
124,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush,heapify
from collections import defaultdict
N,M,X = map(int,input().split())
ab = []
dic = defaultdict(list)
for _ in range(N):
    a,b = map(int,input().split())
    ab.append((a,b))
    dic[b].append(a)
K = int(input())
C = list(map(int,input().split()))
q = []
for key in dic.keys():
    tmp = dic[key]
    tmp_q = []
    for i in range(len(tmp)):
        heappush(tmp_q,-tmp[i])
        
    x = -heappop(tmp_q)
    heappush(q,-(x+X))
    while tmp_q:
        x = -heappop(tmp_q)
        heappush(q,-x)
memo = []
while q:
    x = -heappop(q)
    memo.append(x) 
for i in range(N-1):
    memo[i+1] += memo[i]
ans = 0
for i in range(K):
    c = C[i]
    if c == 0:
        continue
    ans += memo[c-1]
print(ans)
0