結果

問題 No.1071 ベホマラー
ユーザー yuruhiyayuruhiya
提出日時 2020-06-05 21:41:22
言語 Crystal
(1.11.2)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 12,769 ms
コンパイル使用メモリ 304,380 KB
実行使用メモリ 36,056 KB
最終ジャッジ日時 2024-06-30 20:13:37
合計ジャッジ時間 16,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 161 ms
26,996 KB
testcase_11 AC 158 ms
27,012 KB
testcase_12 AC 99 ms
19,528 KB
testcase_13 AC 123 ms
26,948 KB
testcase_14 AC 155 ms
36,056 KB
testcase_15 AC 177 ms
31,232 KB
testcase_16 AC 195 ms
31,104 KB
testcase_17 AC 185 ms
31,220 KB
testcase_18 AC 183 ms
31,056 KB
testcase_19 AC 186 ms
31,300 KB
testcase_20 AC 137 ms
27,724 KB
testcase_21 AC 140 ms
28,524 KB
testcase_22 AC 145 ms
28,876 KB
testcase_23 AC 141 ms
27,616 KB
testcase_24 AC 180 ms
31,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

require "big"
n, k, x, y = read_line.split.map &.to_big_i
a = read_line.split.map &.to_big_i
b = a.map { |i| (i + k - 2)//k }.sort
cul = [0.to_big_i] * (n + 1)
n.pred.downto(0) do |i|
  cul[i] = cul[i + 1] + b[i]
end

y = x * n if y > x * n
puts n.times.to_a.min_of { |i|
  y * b[i] + x * (cul[i + 1] - b[i] * (n - 1 - i))
}
0