結果

問題 No.1708 Quality of Contest
ユーザー syunsukesyunsuke
提出日時 2021-11-22 18:20:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 787 ms / 2,000 ms
コード長 1,097 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 151,188 KB
最終ジャッジ日時 2024-06-24 06:22:03
合計ジャッジ時間 15,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,740 KB
testcase_01 AC 43 ms
53,700 KB
testcase_02 AC 40 ms
53,364 KB
testcase_03 AC 130 ms
77,512 KB
testcase_04 AC 141 ms
77,768 KB
testcase_05 AC 138 ms
77,568 KB
testcase_06 AC 105 ms
76,880 KB
testcase_07 AC 116 ms
77,516 KB
testcase_08 AC 38 ms
53,940 KB
testcase_09 AC 490 ms
143,880 KB
testcase_10 AC 618 ms
139,348 KB
testcase_11 AC 746 ms
144,616 KB
testcase_12 AC 787 ms
148,856 KB
testcase_13 AC 733 ms
144,200 KB
testcase_14 AC 702 ms
148,312 KB
testcase_15 AC 663 ms
148,568 KB
testcase_16 AC 720 ms
151,188 KB
testcase_17 AC 713 ms
144,024 KB
testcase_18 AC 733 ms
144,652 KB
testcase_19 AC 774 ms
146,132 KB
testcase_20 AC 755 ms
143,080 KB
testcase_21 AC 705 ms
147,712 KB
testcase_22 AC 678 ms
144,504 KB
testcase_23 AC 708 ms
144,516 KB
testcase_24 AC 680 ms
141,956 KB
testcase_25 AC 687 ms
135,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X = map(int,input().split())
    
import heapq
A = []
B = []

heapq.heapify(A)
heapq.heapify(B)

for i in range(N):
    a,b = map(int,input().split())
    heapq.heappush(B,(-a,b))
    
#print(B)
S = set()
ans = []
NOW = 0
while len(A) + len(B):
    
    while B and B[0][1] in S:
        b = heapq.heappop(B)
        heapq.heappush(A,b)
    #print(S,A,B)
    if len(B):
        b = B[0][0]
        if len(A):
            a = A[0][0]
            if -a < -b+X:
                b = heapq.heappop(B)
                ans.append(NOW + X -b[0])
                NOW = ans[-1]
                S.add(b[1])
            else:
                a = heapq.heappop(A)
                ans.append(NOW - a[0])
                NOW = ans[-1]
        else:
            b = heapq.heappop(B)
            ans.append(NOW + X -b[0])
            NOW = ans[-1]
            S.add(b[1])
    else:
        a = heapq.heappop(A)
        ans.append(NOW - a[0])
        NOW = ans[-1]
#print(ans)

ANS = 0
K = int(input())
C = list(map(int,input().split()))
for i in range(K):
    if C[i] > 0:
        ANS += ans[C[i]-1]
print(ANS)
0