結果

問題 No.710 チーム戦
ユーザー しらっ亭しらっ亭
提出日時 2018-04-13 02:29:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 510 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-06-27 04:23:01
合計ジャッジ時間 19,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,256 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 665 ms
11,520 KB
testcase_03 AC 649 ms
11,392 KB
testcase_04 AC 780 ms
11,520 KB
testcase_05 AC 583 ms
11,264 KB
testcase_06 AC 783 ms
11,520 KB
testcase_07 AC 669 ms
11,392 KB
testcase_08 AC 739 ms
11,392 KB
testcase_09 AC 661 ms
11,392 KB
testcase_10 AC 665 ms
11,520 KB
testcase_11 AC 703 ms
11,392 KB
testcase_12 AC 783 ms
11,520 KB
testcase_13 AC 739 ms
11,392 KB
testcase_14 AC 700 ms
11,392 KB
testcase_15 AC 738 ms
11,392 KB
testcase_16 AC 807 ms
11,520 KB
testcase_17 AC 710 ms
11,392 KB
testcase_18 AC 725 ms
11,264 KB
testcase_19 AC 909 ms
11,648 KB
testcase_20 AC 782 ms
11,520 KB
testcase_21 AC 777 ms
11,520 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, P):
	sum_b = 0

	aa = bb = 0
	for a, b in P:
		if a < b:
			aa += a
		else:
			bb += b
		sum_b += b
	ma = max(aa, bb)

	dp = [0] * ma

	for a, b in P:
		for j in range(ma - a - 1, -1, -1):
			dp[j + a] = max(dp[j + a], dp[j] + b)

	ans = ma
	for i in range(ma):
		ans = min(ans, max(i, sum_b - dp[i]))

	return ans


def main():
	n = int(input())

	P = [None] * n

	for i in range(n):
		P[i] = tuple(map(int, input().split()))

	ans = solve(n, P)

	print(ans)


if __name__ == '__main__':
	main()
0