結果

問題 No.1570 Blocks
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-06-27 14:34:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,035 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 87,284 KB
実行使用メモリ 71,472 KB
最終ジャッジ日時 2023-09-07 17:52:44
合計ジャッジ時間 4,584 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,472 KB
testcase_01 AC 73 ms
71,160 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

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

Zabuton まんま?

"""

"""
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なんだが…

"""

N = int(input())

SHP = []

for i in range(N):

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

SHP.sort()

dp = [float("inf")] * (N+1)
dp[0] = 0

for i in range(N):

    s,h,p = SHP[i]

    for j in range(N-1,-1,-1):

        if dp[j] <= h:
            dp[j+1] = min(dp[j+1] , dp[j] + p)

ans = 0
for i in range(N+1):
    if dp[i] != float("inf"):
        ans = i

if ans == N:
    print ("Yes")
else:
    print ("No")
0