結果

問題 No.2957 Combo Deck Builder
ユーザー hato336hato336
提出日時 2024-11-08 22:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 708 ms / 1,000 ms
コード長 929 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 130,048 KB
最終ジャッジ日時 2024-11-08 22:46:17
合計ジャッジ時間 20,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
85,760 KB
testcase_01 AC 127 ms
85,632 KB
testcase_02 AC 130 ms
85,760 KB
testcase_03 AC 130 ms
85,504 KB
testcase_04 AC 128 ms
85,632 KB
testcase_05 AC 126 ms
85,760 KB
testcase_06 AC 681 ms
127,360 KB
testcase_07 AC 665 ms
127,872 KB
testcase_08 AC 675 ms
127,616 KB
testcase_09 AC 654 ms
127,616 KB
testcase_10 AC 650 ms
122,676 KB
testcase_11 AC 646 ms
125,312 KB
testcase_12 AC 670 ms
122,704 KB
testcase_13 AC 636 ms
126,336 KB
testcase_14 AC 574 ms
122,448 KB
testcase_15 AC 539 ms
127,872 KB
testcase_16 AC 569 ms
127,360 KB
testcase_17 AC 564 ms
127,616 KB
testcase_18 AC 591 ms
126,080 KB
testcase_19 AC 568 ms
127,616 KB
testcase_20 AC 586 ms
124,544 KB
testcase_21 AC 547 ms
127,104 KB
testcase_22 AC 557 ms
126,464 KB
testcase_23 AC 560 ms
127,360 KB
testcase_24 AC 569 ms
122,848 KB
testcase_25 AC 579 ms
126,720 KB
testcase_26 AC 596 ms
123,108 KB
testcase_27 AC 615 ms
129,920 KB
testcase_28 AC 708 ms
127,484 KB
testcase_29 AC 649 ms
130,048 KB
testcase_30 AC 255 ms
108,544 KB
testcase_31 AC 254 ms
108,672 KB
testcase_32 AC 275 ms
108,928 KB
testcase_33 AC 256 ms
109,952 KB
testcase_34 AC 254 ms
108,544 KB
testcase_35 AC 255 ms
109,824 KB
testcase_36 AC 126 ms
85,376 KB
testcase_37 AC 128 ms
85,504 KB
testcase_38 AC 143 ms
85,504 KB
testcase_39 AC 126 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
input = sys.stdin.readline
n = int(input())
a = [list(map(int,input().split())) for i in range(n)]
p = []
q = []
ans = 0
t = 0
for c,x,y in a:
    if c == 0:
        ans += x
        t += 1
        continue
    if c == n:
        ans += y
        t += 1
        continue
    if x > y:
        p.append((x-y,c))
        ans += y
    elif x < y:
        q.append((y-x,c))
        ans += x
    else:
        ans += x
        t += 1
t += len(q)

h = []
p.sort(key=lambda z:z[1],reverse=True)
for i in range(t,n):
    while p and p[-1][1] <= i:
        heapq.heappush(h,-p[-1][0])
        p.pop()
    if h:
        ans -= heapq.heappop(h)
q.sort(key=lambda z:z[1])
h = []
for i in reversed(range(t)):
    while q and q[-1][-1] > i:
        heapq.heappush(h,-q[-1][0])
        q.pop()
    if h:
        ans -= heapq.heappop(h)
print(ans)
0