結果

問題 No.1583 Building Blocks
ユーザー ayaoniayaoni
提出日時 2021-07-03 21:27:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-09-14 02:51:55
合計ジャッジ時間 3,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 54 ms
64,384 KB
testcase_04 AC 47 ms
60,544 KB
testcase_05 AC 46 ms
59,648 KB
testcase_06 AC 53 ms
64,128 KB
testcase_07 AC 54 ms
64,384 KB
testcase_08 AC 45 ms
59,776 KB
testcase_09 AC 63 ms
69,888 KB
testcase_10 AC 44 ms
59,136 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 57 ms
66,560 KB
testcase_13 AC 62 ms
68,480 KB
testcase_14 AC 55 ms
64,000 KB
testcase_15 AC 58 ms
66,428 KB
testcase_16 AC 62 ms
67,584 KB
testcase_17 AC 60 ms
67,712 KB
testcase_18 AC 50 ms
62,208 KB
testcase_19 AC 67 ms
72,576 KB
testcase_20 AC 54 ms
63,872 KB
testcase_21 AC 53 ms
64,256 KB
testcase_22 AC 55 ms
63,872 KB
testcase_23 AC 49 ms
61,568 KB
testcase_24 AC 59 ms
67,200 KB
testcase_25 AC 39 ms
52,608 KB
testcase_26 AC 63 ms
68,864 KB
testcase_27 AC 54 ms
63,104 KB
testcase_28 AC 66 ms
71,040 KB
testcase_29 AC 52 ms
62,720 KB
testcase_30 AC 48 ms
61,056 KB
testcase_31 AC 57 ms
66,560 KB
testcase_32 AC 52 ms
64,128 KB
testcase_33 AC 62 ms
70,912 KB
testcase_34 AC 39 ms
52,224 KB
testcase_35 AC 54 ms
64,512 KB
testcase_36 AC 60 ms
68,736 KB
testcase_37 AC 48 ms
60,160 KB
testcase_38 AC 39 ms
51,840 KB
testcase_39 AC 39 ms
51,968 KB
testcase_40 AC 40 ms
52,000 KB
testcase_41 AC 40 ms
52,276 KB
testcase_42 AC 39 ms
52,096 KB
testcase_43 AC 39 ms
51,840 KB
testcase_44 AC 39 ms
51,968 KB
testcase_45 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
WS = []
for _ in range(N):
    w,s = MI()
    WS.append((w+s,w,s))
WS.sort()

inf = 10**18
dp = [[inf]*(N+1) for i in range(N+1)]
dp[0][0] = 0
for i in range(1,N+1):
    a,w,s = WS[i-1]
    for j in range(i+1):
        dp[i][j] = dp[i-1][j]
        if j >= 1 and s >= dp[i-1][j-1]:
            dp[i][j] = min(dp[i][j],dp[i-1][j-1]+w)

for j in range(N,-1,-1):
    if dp[-1][j] < inf:
        print(j)
        break
0