結果

問題 No.710 チーム戦
ユーザー しらっ亭しらっ亭
提出日時 2018-04-18 03:49:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 709 ms / 3,000 ms
コード長 437 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-27 04:25:57
合計ジャッジ時間 11,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 404 ms
12,160 KB
testcase_03 AC 393 ms
12,160 KB
testcase_04 AC 415 ms
12,288 KB
testcase_05 AC 384 ms
12,160 KB
testcase_06 AC 416 ms
12,032 KB
testcase_07 AC 375 ms
12,160 KB
testcase_08 AC 433 ms
12,032 KB
testcase_09 AC 401 ms
12,288 KB
testcase_10 AC 371 ms
12,032 KB
testcase_11 AC 403 ms
12,160 KB
testcase_12 AC 395 ms
12,160 KB
testcase_13 AC 378 ms
12,160 KB
testcase_14 AC 404 ms
12,160 KB
testcase_15 AC 386 ms
12,160 KB
testcase_16 AC 383 ms
12,032 KB
testcase_17 AC 408 ms
12,032 KB
testcase_18 AC 389 ms
12,032 KB
testcase_19 AC 406 ms
12,160 KB
testcase_20 AC 384 ms
12,160 KB
testcase_21 AC 407 ms
12,032 KB
testcase_22 AC 709 ms
12,288 KB
testcase_23 AC 87 ms
12,160 KB
testcase_24 AC 678 ms
12,288 KB
testcase_25 AC 87 ms
12,288 KB
testcase_26 AC 86 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = []
B = []

sum_b = 0
N.times do
	a, b = gets.split.map(&:to_i)
	A.push(a)
	B.push(b)
	sum_b += b
end

aa = 0
bb = 0

N.times do |i|
	if aa < bb
		aa += A[i]
	else
		bb += B[i]
	end
end

ma = [aa, bb].max

dp = [0] * ma

N.times do |i|
	a = A[i]
	b = B[i]
	(ma-a-1).downto(0) do |j|
		dp[j + a] = [dp[j + a], dp[j] + b].max
	end
end

ans = ma
ma.times do |i|
	ans = [ans, [i, sum_b - dp[i]].max].min
end

puts(ans.to_s)
0