結果

問題 No.545 ママの大事な二人の子供
ユーザー cielciel
提出日時 2017-07-15 01:05:45
言語 Ruby
(3.3.0)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-10-08 00:27:28
合計ジャッジ時間 7,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
12,160 KB
testcase_01 AC 96 ms
12,032 KB
testcase_02 AC 99 ms
12,032 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 95 ms
12,288 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 88 ms
12,160 KB
testcase_09 AC 89 ms
12,032 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 88 ms
12,160 KB
testcase_12 AC 89 ms
12,032 KB
testcase_13 AC 89 ms
12,160 KB
testcase_14 AC 91 ms
12,032 KB
testcase_15 AC 90 ms
12,032 KB
testcase_16 AC 92 ms
12,032 KB
testcase_17 AC 95 ms
12,160 KB
testcase_18 AC 103 ms
12,288 KB
testcase_19 AC 117 ms
12,544 KB
testcase_20 AC 139 ms
13,056 KB
testcase_21 AC 91 ms
12,032 KB
testcase_22 AC 293 ms
16,512 KB
testcase_23 AC 504 ms
20,480 KB
testcase_24 AC 283 ms
16,512 KB
testcase_25 AC 499 ms
20,352 KB
testcase_26 AC 509 ms
20,480 KB
testcase_27 AC 508 ms
20,480 KB
testcase_28 AC 512 ms
20,480 KB
testcase_29 AC 511 ms
20,608 KB
testcase_30 AC 502 ms
20,480 KB
testcase_31 AC 504 ms
20,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N=gets.to_i
r=Float::INFINITY
t=0
c=[]
N.times{
	a,b=gets.split.map &:to_i
	t+=a
	c<<a+b
}
q1=[]
(1<<N/2).times{|i|
	s=0
	(N/2).times{|j|i[j]>0&&s+=c[j]}
	q1<<s
}
q1=q1.uniq.sort
q2=[]
(1<<(N-N/2)).times{|i|
	s=0
	(N-N/2).times{|j|i[j]>0&&s+=c[N/2+j]}
	q2<<s
}
q2=q2.uniq.sort
q1.each{|e|
	fidx=(0...q2.size).bsearch{|i|q2[i]>=t-e}||q2.size
	f_=([fidx-1,fidx]-[-1,q2.size]).map{|i|q2[i]}
	f_.each{|f|r=[r,(t-e-f).abs].min}
}
p r
0