結果

問題 No.710 チーム戦
ユーザー H3PO4H3PO4
提出日時 2021-01-20 10:03:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 631 ms / 3,000 ms
コード長 366 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,636 KB
最終ジャッジ日時 2024-06-01 10:53:05
合計ジャッジ時間 19,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
44,956 KB
testcase_01 AC 523 ms
45,080 KB
testcase_02 AC 624 ms
45,220 KB
testcase_03 AC 624 ms
45,204 KB
testcase_04 AC 617 ms
45,056 KB
testcase_05 AC 619 ms
45,088 KB
testcase_06 AC 621 ms
45,636 KB
testcase_07 AC 619 ms
45,220 KB
testcase_08 AC 613 ms
45,220 KB
testcase_09 AC 631 ms
45,516 KB
testcase_10 AC 626 ms
45,524 KB
testcase_11 AC 627 ms
45,208 KB
testcase_12 AC 622 ms
45,636 KB
testcase_13 AC 618 ms
45,084 KB
testcase_14 AC 628 ms
45,224 KB
testcase_15 AC 614 ms
45,480 KB
testcase_16 AC 613 ms
45,080 KB
testcase_17 AC 609 ms
45,100 KB
testcase_18 AC 628 ms
45,092 KB
testcase_19 AC 629 ms
45,128 KB
testcase_20 AC 626 ms
45,504 KB
testcase_21 AC 629 ms
45,476 KB
testcase_22 AC 629 ms
45,096 KB
testcase_23 AC 630 ms
45,468 KB
testcase_24 AC 622 ms
45,468 KB
testcase_25 AC 512 ms
45,084 KB
testcase_26 AC 518 ms
45,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
AB = []
sumB = 0
for _ in range(N):
    a, b = map(int, input().split())
    sumB += b
    AB.append((a, b))

MAX = 10 ** 5 + 1

dp = np.zeros(MAX, dtype=int)
for a, b in AB:
    new_dp = dp.copy()
    new_dp[a:] = np.maximum(dp[a:], dp[:MAX - a] + b)
    dp = new_dp

ans = np.maximum(np.arange(MAX), sumB - dp).min()
print(ans)
0