結果

問題 No.710 チーム戦
ユーザー shotoyooshotoyoo
提出日時 2021-06-16 22:48:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 3,000 ms
コード長 691 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 142,648 KB
最終ジャッジ日時 2024-12-31 12:11:32
合計ジャッジ時間 4,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,668 KB
testcase_01 AC 51 ms
63,964 KB
testcase_02 AC 121 ms
102,900 KB
testcase_03 AC 133 ms
103,600 KB
testcase_04 AC 132 ms
106,588 KB
testcase_05 AC 125 ms
102,360 KB
testcase_06 AC 128 ms
105,164 KB
testcase_07 AC 131 ms
106,112 KB
testcase_08 AC 133 ms
106,676 KB
testcase_09 AC 134 ms
105,604 KB
testcase_10 AC 127 ms
104,840 KB
testcase_11 AC 131 ms
104,488 KB
testcase_12 AC 133 ms
108,096 KB
testcase_13 AC 128 ms
104,924 KB
testcase_14 AC 130 ms
105,252 KB
testcase_15 AC 126 ms
103,060 KB
testcase_16 AC 131 ms
107,612 KB
testcase_17 AC 151 ms
107,400 KB
testcase_18 AC 136 ms
104,980 KB
testcase_19 AC 138 ms
108,680 KB
testcase_20 AC 131 ms
104,928 KB
testcase_21 AC 141 ms
108,768 KB
testcase_22 AC 207 ms
142,648 KB
testcase_23 AC 47 ms
60,368 KB
testcase_24 AC 209 ms
140,372 KB
testcase_25 AC 41 ms
52,952 KB
testcase_26 AC 41 ms
52,984 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