結果

問題 No.1708 Quality of Contest
ユーザー tamatotamato
提出日時 2021-10-15 21:43:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 135,292 KB
最終ジャッジ日時 2024-09-17 17:22:13
合計ジャッジ時間 6,568 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,072 KB
testcase_01 AC 35 ms
54,132 KB
testcase_02 AC 32 ms
53,440 KB
testcase_03 AC 90 ms
77,744 KB
testcase_04 AC 95 ms
77,468 KB
testcase_05 AC 94 ms
77,432 KB
testcase_06 AC 86 ms
77,128 KB
testcase_07 AC 84 ms
77,348 KB
testcase_08 AC 34 ms
53,496 KB
testcase_09 AC 214 ms
135,292 KB
testcase_10 AC 243 ms
133,436 KB
testcase_11 AC 272 ms
125,404 KB
testcase_12 AC 273 ms
132,880 KB
testcase_13 AC 268 ms
128,628 KB
testcase_14 AC 270 ms
132,440 KB
testcase_15 AC 280 ms
134,596 KB
testcase_16 AC 295 ms
134,756 KB
testcase_17 AC 276 ms
132,644 KB
testcase_18 AC 274 ms
132,788 KB
testcase_19 AC 276 ms
132,916 KB
testcase_20 AC 270 ms
132,860 KB
testcase_21 AC 271 ms
133,284 KB
testcase_22 AC 282 ms
133,104 KB
testcase_23 AC 286 ms
134,888 KB
testcase_24 AC 259 ms
128,972 KB
testcase_25 AC 264 ms
123,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from heapq import heappush, heappop
    input = sys.stdin.buffer.readline

    N, M, X = map(int, input().split())
    AB = []
    best = [-1] * (M+1)
    best_idx = [-1] * (M+1)
    for i in range(N):
        a, b = map(int, input().split())
        if a > best[b]:
            best[b] = a
            best_idx[b] = i
        AB.append((a, b))
    pq_unseen = [10 ** 15]
    pq_seen = [10 ** 15]
    used = set()
    for j in range(1, M+1):
        if best_idx[j] != -1:
            heappush(pq_unseen, -best[j])
            used.add(best_idx[j])
    for i in range(N):
        a, b = AB[i]
        if i not in used:
            heappush(pq_seen, -a)
    D = []
    for _ in range(N):
        p = -pq_seen[0]
        q = -pq_unseen[0] + X
        if p > q:
            D.append(p)
            heappop(pq_seen)
        else:
            D.append(q)
            heappop(pq_unseen)

    cs = [0] * (N+1)
    for i in range(N):
        cs[i+1] = cs[i] + D[i]
    K = int(input())
    C = list(map(int, input().split()))
    ans = 0
    for c in C:
        ans += cs[c]
    print(ans)


if __name__ == '__main__':
    main()
0