結果

問題 No.2957 Combo Deck Builder
ユーザー 👑 binapbinap
提出日時 2024-10-21 06:47:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 505 ms / 1,000 ms
コード長 837 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 105,964 KB
最終ジャッジ日時 2024-10-30 18:38:43
合計ジャッジ時間 16,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,740 KB
testcase_01 AC 38 ms
54,076 KB
testcase_02 AC 36 ms
52,616 KB
testcase_03 AC 37 ms
52,940 KB
testcase_04 AC 38 ms
52,532 KB
testcase_05 AC 38 ms
52,836 KB
testcase_06 AC 442 ms
102,976 KB
testcase_07 AC 452 ms
102,736 KB
testcase_08 AC 471 ms
102,820 KB
testcase_09 AC 457 ms
102,692 KB
testcase_10 AC 440 ms
102,564 KB
testcase_11 AC 447 ms
102,548 KB
testcase_12 AC 446 ms
102,372 KB
testcase_13 AC 466 ms
102,916 KB
testcase_14 AC 476 ms
98,128 KB
testcase_15 AC 360 ms
98,836 KB
testcase_16 AC 486 ms
98,824 KB
testcase_17 AC 479 ms
98,768 KB
testcase_18 AC 477 ms
98,464 KB
testcase_19 AC 489 ms
99,056 KB
testcase_20 AC 487 ms
98,784 KB
testcase_21 AC 485 ms
98,236 KB
testcase_22 AC 491 ms
98,496 KB
testcase_23 AC 481 ms
98,500 KB
testcase_24 AC 360 ms
98,124 KB
testcase_25 AC 492 ms
98,592 KB
testcase_26 AC 486 ms
100,496 KB
testcase_27 AC 477 ms
100,436 KB
testcase_28 AC 498 ms
100,588 KB
testcase_29 AC 505 ms
100,748 KB
testcase_30 AC 212 ms
97,544 KB
testcase_31 AC 207 ms
98,288 KB
testcase_32 AC 349 ms
105,132 KB
testcase_33 AC 352 ms
105,964 KB
testcase_34 AC 200 ms
90,076 KB
testcase_35 AC 201 ms
90,508 KB
testcase_36 AC 39 ms
54,144 KB
testcase_37 AC 38 ms
52,884 KB
testcase_38 AC 39 ms
52,880 KB
testcase_39 AC 38 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

def solve(schedule, n):
    res = 0
    pq = []
    for i in range(n):
        for val in schedule[i]:
            heapq.heappush(pq, -val)  # using negative values to simulate max-heap
        if pq:
            val = -heapq.heappop(pq)
            res += val
    return res

def main():
    n = int(input())
    
    x_great = [[] for _ in range(n + 1)]
    y_great = [[] for _ in range(n + 1)]
    
    ans = 0
    
    for _ in range(n):
        c, x, y = map(int, input().split())
        
        guarantee = min(x, y)
        ans += guarantee
        x -= guarantee
        y -= guarantee
        if x > 0:
            x_great[c].append(x)
        if y > 0:
            y_great[n - c].append(y)
    
    ans += solve(x_great, n)
    ans += solve(y_great, n)
    
    print(ans)

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