結果

問題 No.1583 Building Blocks
ユーザー shino16shino16
提出日時 2021-04-04 17:35:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-09-14 02:45:41
合計ジャッジ時間 7,705 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 124 ms
12,544 KB
testcase_04 AC 40 ms
10,752 KB
testcase_05 AC 34 ms
10,752 KB
testcase_06 AC 117 ms
12,544 KB
testcase_07 AC 154 ms
13,056 KB
testcase_08 AC 34 ms
10,624 KB
testcase_09 AC 337 ms
17,024 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 194 ms
13,824 KB
testcase_13 AC 269 ms
15,360 KB
testcase_14 AC 98 ms
12,160 KB
testcase_15 AC 166 ms
13,440 KB
testcase_16 AC 251 ms
14,976 KB
testcase_17 AC 254 ms
15,232 KB
testcase_18 AC 55 ms
11,392 KB
testcase_19 AC 510 ms
20,224 KB
testcase_20 AC 100 ms
12,160 KB
testcase_21 AC 97 ms
12,288 KB
testcase_22 AC 111 ms
12,544 KB
testcase_23 AC 45 ms
11,008 KB
testcase_24 AC 337 ms
19,200 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 415 ms
21,632 KB
testcase_27 AC 109 ms
12,928 KB
testcase_28 AC 492 ms
22,400 KB
testcase_29 AC 70 ms
11,904 KB
testcase_30 AC 43 ms
11,008 KB
testcase_31 AC 236 ms
14,848 KB
testcase_32 AC 120 ms
12,544 KB
testcase_33 AC 402 ms
18,688 KB
testcase_34 AC 32 ms
10,624 KB
testcase_35 AC 131 ms
12,800 KB
testcase_36 AC 275 ms
15,616 KB
testcase_37 AC 46 ms
11,008 KB
testcase_38 AC 30 ms
10,752 KB
testcase_39 AC 30 ms
10,752 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 30 ms
10,624 KB
testcase_42 AC 30 ms
10,624 KB
testcase_43 AC 29 ms
10,752 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ws = [list(map(int, input().split())) for _ in range(n)]

ws.sort(key=lambda x: x[0] + x[1])

dp = [[1 << 60] * (n + 1) for _ in range(n + 1)]
dp[0][0] = 0

for t in range(n):
    w, s = ws[t]
    dp[t + 1][0] = 0
    for i in range(n, 0, -1):
        if dp[t][i - 1] <= s:
            dp[t + 1][i] = min(dp[t][i], dp[t][i - 1] + w)
        else:
            dp[t + 1][i] = dp[t][i]

for i in range(n, 0, -1):
    if dp[n][i] != 1 << 60:
        print(i)
        break
0