結果

問題 No.1570 Blocks
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-06-27 14:39:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,800 KB
実行使用メモリ 90,484 KB
最終ジャッジ日時 2024-06-25 11:42:10
合計ジャッジ時間 13,531 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,496 KB
testcase_01 AC 38 ms
52,876 KB
testcase_02 AC 260 ms
85,800 KB
testcase_03 AC 327 ms
86,520 KB
testcase_04 AC 230 ms
82,860 KB
testcase_05 AC 241 ms
82,436 KB
testcase_06 AC 250 ms
82,896 KB
testcase_07 AC 81 ms
74,452 KB
testcase_08 AC 308 ms
86,084 KB
testcase_09 AC 353 ms
87,276 KB
testcase_10 AC 281 ms
85,660 KB
testcase_11 AC 308 ms
86,032 KB
testcase_12 AC 366 ms
87,924 KB
testcase_13 AC 364 ms
89,360 KB
testcase_14 AC 373 ms
88,980 KB
testcase_15 AC 185 ms
81,812 KB
testcase_16 AC 375 ms
89,236 KB
testcase_17 AC 185 ms
82,476 KB
testcase_18 AC 313 ms
85,764 KB
testcase_19 AC 185 ms
82,072 KB
testcase_20 AC 185 ms
82,204 KB
testcase_21 AC 289 ms
86,228 KB
testcase_22 AC 37 ms
52,832 KB
testcase_23 AC 39 ms
52,268 KB
testcase_24 AC 39 ms
52,884 KB
testcase_25 AC 38 ms
52,696 KB
testcase_26 AC 39 ms
54,064 KB
testcase_27 AC 39 ms
53,336 KB
testcase_28 AC 39 ms
53,776 KB
testcase_29 AC 39 ms
52,660 KB
testcase_30 AC 38 ms
52,864 KB
testcase_31 AC 39 ms
54,260 KB
testcase_32 AC 355 ms
87,160 KB
testcase_33 AC 391 ms
90,484 KB
testcase_34 AC 341 ms
86,164 KB
testcase_35 AC 374 ms
87,160 KB
testcase_36 AC 370 ms
89,232 KB
testcase_37 AC 366 ms
87,292 KB
testcase_38 AC 366 ms
87,544 KB
testcase_39 AC 378 ms
89,240 KB
testcase_40 AC 357 ms
87,060 KB
testcase_41 AC 380 ms
87,280 KB
testcase_42 AC 384 ms
89,236 KB
testcase_43 AC 381 ms
89,156 KB
testcase_44 AC 381 ms
88,976 KB
testcase_45 AC 386 ms
89,228 KB
testcase_46 AC 390 ms
89,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/1570

Zabuton まんま?
あ、2乗を直さないと

"""

"""
https://atcoder.jp/contests/cf17-final/tasks/cf17_final_d

全て置けるかの判定を考える
H+Pで昇順ソート
後ろから見ていって、その時点での座布団がH+P以下なら○ だめならX
を付けてPを引く
を繰り返し、全て○なら全員置ける(丸の数以上の答えであることが確定する)

あとは前から見ていってdp?
dp[i][j] = i人目まで見てj人置いた時の最小の枚数
→H+Pでソートするのが正しいなら絶対おkなんだが…

"""

import sys
N = int(input())

SHP = []

for i in range(N):

    p,h = map(int,input().split())
    SHP.append( (h+p,h,p) )

SHP.sort()
now = 0

for i in range(N):

    s,h,p = SHP[i]
    A,B = p,h

    if now <= B:
        now += A
    else:
        print ("No")
        sys.exit()
        
print ("Yes")
0