結果

問題 No.710 チーム戦
ユーザー simamumusimamumu
提出日時 2018-06-30 10:33:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,528 ms / 3,000 ms
コード長 506 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-07-01 00:53:29
合計ジャッジ時間 23,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 1,025 ms
11,648 KB
testcase_03 AC 956 ms
11,776 KB
testcase_04 AC 1,069 ms
11,776 KB
testcase_05 AC 936 ms
11,648 KB
testcase_06 AC 1,015 ms
11,648 KB
testcase_07 AC 910 ms
11,776 KB
testcase_08 AC 1,070 ms
11,648 KB
testcase_09 AC 934 ms
11,648 KB
testcase_10 AC 933 ms
11,520 KB
testcase_11 AC 995 ms
11,648 KB
testcase_12 AC 978 ms
11,648 KB
testcase_13 AC 891 ms
11,776 KB
testcase_14 AC 970 ms
11,648 KB
testcase_15 AC 970 ms
11,648 KB
testcase_16 AC 956 ms
11,648 KB
testcase_17 AC 1,055 ms
11,648 KB
testcase_18 AC 966 ms
11,648 KB
testcase_19 AC 1,055 ms
11,648 KB
testcase_20 AC 963 ms
11,648 KB
testcase_21 AC 1,032 ms
11,648 KB
testcase_22 AC 1,528 ms
12,544 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 1,495 ms
12,416 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A_li = [0]
B_li = [0]

aa = bb = bsum = 0

for i in range(N):
	a,b = map(int,input().split())
	A_li.append(a)
	B_li.append(b)
	if aa < bb:
		aa += a
	else:
		bb += b
	bsum += b
	
		
ma = max(aa,bb)	+ 1

dp = [0] * ma

for i in range(1,N+1):
	weight = A_li[i]
	value = B_li[i]
	for w in range(ma-1 , weight-1 , -1):
		if dp[w] < dp[w-weight] + value:
			dp[w] = dp[w-weight] + value
	
ans = 10**20	
	
	
for w in range(1,ma):
	ans1 = max(w, (bsum - dp[w]))
	ans = min(ans,ans1)
	
print(ans)
0