結果
問題 | No.710 チーム戦 |
ユーザー | simamumu |
提出日時 | 2018-06-30 10:04:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 527 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 180,124 KB |
最終ジャッジ日時 | 2024-07-01 00:50:53 |
合計ジャッジ時間 | 8,654 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
17,692 KB |
testcase_01 | AC | 50 ms
11,008 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
N = int(input()) A_li = [0] B_li = [0] aa = bb = 0 for i in range(N): a,b = map(int,input().split()) A_li.append(a) B_li.append(b) aa += a bb += b ma = max(aa,bb) dp = [[0 for i in range(ma+1)] for j in range(N+1)] for i in range(1,N+1): weight = A_li[i] value = B_li[i] for j in range(1,ma+1): if j < weight: dp[i][j] = dp[i-1][j] else: dp[i][j] = max(dp[i-1][j], (dp[i-1][j-weight]+value)) ans = 10**20 for j in range(1,ma+1): ans1 = max(j, (bb - dp[N][j])) ans = min(ans,ans1) print(ans)