結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー simansiman
提出日時 2022-08-05 13:28:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,830 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 36,096 KB
最終ジャッジ日時 2024-09-15 09:16:52
合計ジャッジ時間 48,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 87 ms
12,032 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 88 ms
12,288 KB
testcase_07 AC 87 ms
12,032 KB
testcase_08 AC 88 ms
12,032 KB
testcase_09 AC 88 ms
12,032 KB
testcase_10 AC 87 ms
12,032 KB
testcase_11 AC 89 ms
12,032 KB
testcase_12 AC 89 ms
12,032 KB
testcase_13 AC 89 ms
12,032 KB
testcase_14 AC 89 ms
12,160 KB
testcase_15 AC 88 ms
12,288 KB
testcase_16 AC 89 ms
12,032 KB
testcase_17 AC 88 ms
12,032 KB
testcase_18 AC 1,664 ms
35,712 KB
testcase_19 AC 1,609 ms
35,200 KB
testcase_20 AC 950 ms
31,104 KB
testcase_21 AC 213 ms
14,720 KB
testcase_22 AC 1,025 ms
31,488 KB
testcase_23 AC 175 ms
12,544 KB
testcase_24 AC 1,305 ms
33,408 KB
testcase_25 AC 990 ms
31,360 KB
testcase_26 AC 414 ms
17,024 KB
testcase_27 AC 183 ms
12,544 KB
testcase_28 AC 1,729 ms
35,840 KB
testcase_29 AC 1,731 ms
35,968 KB
testcase_30 AC 1,726 ms
35,968 KB
testcase_31 AC 1,729 ms
35,968 KB
testcase_32 AC 1,752 ms
35,968 KB
testcase_33 AC 1,731 ms
35,968 KB
testcase_34 AC 1,734 ms
36,096 KB
testcase_35 AC 1,743 ms
36,096 KB
testcase_36 AC 1,725 ms
35,840 KB
testcase_37 AC 1,741 ms
35,840 KB
testcase_38 AC 1,712 ms
35,840 KB
testcase_39 AC 1,721 ms
35,968 KB
testcase_40 AC 1,718 ms
35,968 KB
testcase_41 AC 1,730 ms
35,840 KB
testcase_42 AC 1,830 ms
35,968 KB
testcase_43 AC 89 ms
12,288 KB
testcase_44 AC 89 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def ternary_search_tree(left, right)
  loop_cnt = 40

  loop_cnt.times do
    if yield((left * 2 + right) / 3) < yield((left + right * 2) / 3)
      right = (left + right * 2) / 3
    else
      left = (left * 2 + right) / 3
    end
  end

  (left + right) / 2
end

N = gets.to_i
A = gets.split.map(&:to_i)
B = gets.split.map(&:to_i)
C = A.zip(B)

def f(x)
  C.sum { |a, b| b * (x - a).abs }
end

res = ternary_search_tree(-1 * 10 ** 6, 10 ** 6) { |x| f(x) }

puts [res, f(res).to_i].join(' ')
0