結果

問題 No.710 チーム戦
ユーザー shotoyooshotoyoo
提出日時 2021-06-16 22:48:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 3,000 ms
コード長 691 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 142,528 KB
最終ジャッジ日時 2024-06-10 03:32:41
合計ジャッジ時間 3,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 49 ms
63,104 KB
testcase_02 AC 115 ms
102,144 KB
testcase_03 AC 111 ms
104,108 KB
testcase_04 AC 113 ms
106,240 KB
testcase_05 AC 107 ms
102,528 KB
testcase_06 AC 116 ms
105,624 KB
testcase_07 AC 112 ms
105,480 KB
testcase_08 AC 112 ms
107,668 KB
testcase_09 AC 110 ms
104,664 KB
testcase_10 AC 107 ms
103,456 KB
testcase_11 AC 112 ms
105,444 KB
testcase_12 AC 114 ms
107,012 KB
testcase_13 AC 110 ms
105,420 KB
testcase_14 AC 112 ms
106,208 KB
testcase_15 AC 109 ms
103,032 KB
testcase_16 AC 112 ms
107,692 KB
testcase_17 AC 114 ms
107,260 KB
testcase_18 AC 113 ms
104,436 KB
testcase_19 AC 118 ms
108,932 KB
testcase_20 AC 110 ms
105,140 KB
testcase_21 AC 118 ms
107,760 KB
testcase_22 AC 181 ms
142,528 KB
testcase_23 AC 40 ms
60,212 KB
testcase_24 AC 176 ms
140,272 KB
testcase_25 AC 34 ms
53,500 KB
testcase_26 AC 35 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
ab = [list(map(int, input().split())) for _ in range(n)]
m = max(sum((ab[i][0] for i in range(n))), sum((ab[i][1] for i in range(n))))
inf = 10**12
dp = [inf]*(m+1)
dp[0] = 0
for a,b in ab:
    ndp = [inf]*(m+1)
    for j in range(m+1)[::-1]:
        if j-a>=0:
            ndp[j] = min(dp[j]+b, dp[j-a])
        else:
            ndp[j] = dp[j] + b
    dp = ndp
ans = float("inf")
for j in range(m+1):
    ans = min(ans ,max(j, dp[j]))
print(ans)
0