結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー yuruhiyayuruhiya
提出日時 2020-10-10 16:26:59
言語 Crystal
(1.11.2)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,330 bytes
コンパイル時間 11,225 ms
コンパイル使用メモリ 297,048 KB
実行使用メモリ 90,388 KB
最終ジャッジ日時 2024-06-30 21:18:23
合計ジャッジ時間 26,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
65,536 KB
testcase_01 AC 65 ms
65,408 KB
testcase_02 AC 65 ms
65,408 KB
testcase_03 AC 65 ms
65,408 KB
testcase_04 AC 65 ms
65,408 KB
testcase_05 AC 65 ms
65,408 KB
testcase_06 AC 65 ms
65,408 KB
testcase_07 AC 64 ms
65,536 KB
testcase_08 AC 65 ms
65,548 KB
testcase_09 AC 64 ms
65,532 KB
testcase_10 AC 65 ms
65,408 KB
testcase_11 AC 65 ms
65,536 KB
testcase_12 AC 65 ms
65,536 KB
testcase_13 AC 65 ms
65,600 KB
testcase_14 AC 64 ms
65,536 KB
testcase_15 AC 65 ms
65,536 KB
testcase_16 AC 64 ms
65,536 KB
testcase_17 AC 65 ms
65,532 KB
testcase_18 AC 115 ms
86,144 KB
testcase_19 AC 114 ms
86,016 KB
testcase_20 AC 94 ms
77,568 KB
testcase_21 AC 69 ms
67,328 KB
testcase_22 AC 99 ms
78,336 KB
testcase_23 AC 68 ms
68,480 KB
testcase_24 AC 105 ms
81,408 KB
testcase_25 AC 98 ms
78,592 KB
testcase_26 AC 76 ms
70,016 KB
testcase_27 AC 68 ms
66,816 KB
testcase_28 AC 119 ms
85,924 KB
testcase_29 AC 123 ms
87,808 KB
testcase_30 AC 119 ms
87,032 KB
testcase_31 AC 123 ms
86,860 KB
testcase_32 AC 120 ms
89,588 KB
testcase_33 AC 122 ms
89,728 KB
testcase_34 AC 120 ms
90,388 KB
testcase_35 AC 119 ms
85,888 KB
testcase_36 AC 122 ms
86,016 KB
testcase_37 AC 121 ms
86,772 KB
testcase_38 AC 118 ms
87,728 KB
testcase_39 AC 123 ms
86,760 KB
testcase_40 AC 117 ms
87,808 KB
testcase_41 AC 120 ms
86,860 KB
testcase_42 AC 121 ms
87,072 KB
testcase_43 AC 63 ms
65,536 KB
testcase_44 AC 65 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class CulSum(T)
  def initialize(a : Array(T))
    @n = a.size
    @s = Array(T).new(@n + 1, T.zero)
    @n.times do |i|
      @s[i + 1] = @s[i] + a[i]
    end
  end

  def initialize(@n : Int32, &f : Int32 -> T)
    @s = Array(T).new(@n + 1, T.zero)
    @n.times do |i|
      @s[i + 1] = @s[i] + yield(i)
    end
  end

  def initialize(a, &f)
    @n = a.size
    @s = Array(T).new(@n + 1, T.zero)
    @n.times do |i|
      @s[i + 1] = @s[i] + yield(a[i])
    end
  end

  def [](l : Int32, r : Int32)
    l < r ? @s[r] - @s[l] : 0
  end

  def [](i : Int32)
    @s[i]
  end

  def [](r : Range(Int32, Int32))
    @s[r.exclusive? ? r.end : r.end + 1] - @s[r.begin]
  end

  def to_a
    (0...@n).map { |i| self[i..i] }
  end
end

n = read_line.to_i
a = read_line.split.map(&.to_i)
b = read_line.split.map(&.to_i64)

MAX_A = 2 * 10**6
c = Array(Int64).new(MAX_A + 1, 0)
n.times { |i| c[a[i] + MAX_A // 2] += b[i] }
c_sum = CulSum.new(c)

val_left = Array(Int64).new(MAX_A + 1, 0)
(1..MAX_A).each do |i|
  val_left[i] = val_left[i - 1] + c_sum[0...i]
end
val_right = Array(Int64).new(MAX_A + 1, 0)
(0...MAX_A).reverse_each do |i|
  val_right[i] = val_right[i + 1] + c_sum[i + 1..MAX_A]
end

min_val, min_index = (0..MAX_A).map { |i| val_left[i] + val_right[i] }.each_with_index.min
puts [min_index - MAX_A // 2, min_val].join(' ')
0