結果

問題 No.1583 Building Blocks
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-14 13:18:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 683 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 729 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-09-14 02:53:24
合計ジャッジ時間 9,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 149 ms
12,416 KB
testcase_04 AC 41 ms
10,880 KB
testcase_05 AC 34 ms
10,752 KB
testcase_06 AC 140 ms
12,416 KB
testcase_07 AC 178 ms
13,184 KB
testcase_08 AC 37 ms
10,752 KB
testcase_09 AC 431 ms
17,152 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 241 ms
13,952 KB
testcase_13 AC 349 ms
15,360 KB
testcase_14 AC 114 ms
12,032 KB
testcase_15 AC 210 ms
13,440 KB
testcase_16 AC 317 ms
14,976 KB
testcase_17 AC 315 ms
15,232 KB
testcase_18 AC 59 ms
11,392 KB
testcase_19 AC 683 ms
20,096 KB
testcase_20 AC 117 ms
12,160 KB
testcase_21 AC 115 ms
12,160 KB
testcase_22 AC 133 ms
12,544 KB
testcase_23 AC 48 ms
11,136 KB
testcase_24 AC 432 ms
18,816 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 545 ms
21,504 KB
testcase_27 AC 131 ms
12,672 KB
testcase_28 AC 621 ms
22,400 KB
testcase_29 AC 79 ms
11,904 KB
testcase_30 AC 46 ms
11,136 KB
testcase_31 AC 287 ms
14,976 KB
testcase_32 AC 136 ms
12,544 KB
testcase_33 AC 525 ms
18,560 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 158 ms
12,672 KB
testcase_36 AC 341 ms
15,872 KB
testcase_37 AC 49 ms
11,008 KB
testcase_38 AC 30 ms
10,624 KB
testcase_39 AC 31 ms
10,752 KB
testcase_40 AC 30 ms
10,624 KB
testcase_41 AC 30 ms
10,624 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 30 ms
10,624 KB
testcase_45 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ws = [list(map(int, input().split())) for i in range(n)]
ws.sort(key=lambda x: x[0] + x[1])
dp = [[10 ** 18] * (n + 1) for i in range(n + 1)]
dp[0][0] = 0
for i in range(1, n + 1):
    for j in range(n + 1):
        if j == 0: dp[i][j] = 0; continue
        if dp[i - 1][j - 1] > ws[i - 1][1]:
            dp[i][j] = dp[i - 1][j]
        else:
            dp[i][j] = min(dp[i - 1][j], dp[i - 1][j - 1] + ws[i - 1][0])
for i in range(1, n + 1)[::-1]:
    if dp[n][i] != 10 ** 18: exit(print(i))
0