結果

問題 No.1570 Blocks
ユーザー H3PO4H3PO4
提出日時 2022-11-29 08:16:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,924 KB
最終ジャッジ日時 2024-10-06 15:47:27
合計ジャッジ時間 13,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 193 ms
22,524 KB
testcase_03 AC 333 ms
25,676 KB
testcase_04 AC 160 ms
21,288 KB
testcase_05 AC 171 ms
21,616 KB
testcase_06 AC 257 ms
22,064 KB
testcase_07 AC 48 ms
12,032 KB
testcase_08 AC 326 ms
25,124 KB
testcase_09 AC 382 ms
27,616 KB
testcase_10 AC 207 ms
24,120 KB
testcase_11 AC 225 ms
25,768 KB
testcase_12 AC 394 ms
28,148 KB
testcase_13 AC 260 ms
27,936 KB
testcase_14 AC 265 ms
28,444 KB
testcase_15 AC 130 ms
18,560 KB
testcase_16 AC 265 ms
28,324 KB
testcase_17 AC 173 ms
18,176 KB
testcase_18 AC 213 ms
24,840 KB
testcase_19 AC 166 ms
18,048 KB
testcase_20 AC 125 ms
18,412 KB
testcase_21 AC 289 ms
23,724 KB
testcase_22 AC 31 ms
10,496 KB
testcase_23 AC 31 ms
10,496 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 30 ms
10,496 KB
testcase_26 AC 31 ms
10,496 KB
testcase_27 AC 30 ms
10,496 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 31 ms
10,752 KB
testcase_30 AC 30 ms
10,496 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 390 ms
28,004 KB
testcase_33 AC 397 ms
28,428 KB
testcase_34 AC 243 ms
26,888 KB
testcase_35 AC 386 ms
27,972 KB
testcase_36 AC 258 ms
27,476 KB
testcase_37 AC 372 ms
27,316 KB
testcase_38 AC 383 ms
27,652 KB
testcase_39 AC 264 ms
28,348 KB
testcase_40 AC 256 ms
27,896 KB
testcase_41 AC 390 ms
28,140 KB
testcase_42 AC 272 ms
28,924 KB
testcase_43 AC 269 ms
28,672 KB
testcase_44 AC 274 ms
28,808 KB
testcase_45 AC 273 ms
28,844 KB
testcase_46 AC 397 ms
28,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq

input = sys.stdin.buffer.readline


def solve(N, blocks):
    blocks.sort(key=lambda x: x[0] + x[1])
    S = sum(a for a, _ in blocks)
    h = []
    for _ in range(N):
        while blocks and blocks[-1][0] + blocks[-1][1] >= S:
            a, b = blocks.pop()
            heapq.heappush(h, -a)
        if h:
            a = -heapq.heappop(h)
            S -= a
        else:
            return False
    return True


N = int(input())
blocks = [tuple(map(int, input().split())) for _ in range(N)]
print("Yes" if solve(N, blocks) else "No")
0