結果

問題 No.1375 Divide and Update
ユーザー yuruhiyayuruhiya
提出日時 2021-02-06 17:54:16
言語 Crystal
(1.11.2)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 13,493 ms
コンパイル使用メモリ 296,148 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-07-03 05:19:56
合計ジャッジ時間 17,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 40 ms
21,000 KB
testcase_11 AC 35 ms
17,432 KB
testcase_12 AC 20 ms
12,084 KB
testcase_13 AC 20 ms
11,136 KB
testcase_14 AC 43 ms
21,544 KB
testcase_15 AC 45 ms
24,780 KB
testcase_16 AC 48 ms
25,984 KB
testcase_17 AC 44 ms
21,524 KB
testcase_18 AC 42 ms
20,448 KB
testcase_19 AC 42 ms
21,960 KB
testcase_20 AC 36 ms
20,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

def generate_dp(n, a, x)
  dp = [-10i64 ** 9] * -~n
  n.times do |i|
    dp[i + 1] = (x - a[i]) + {dp[i], 0i64}.max
  end
  n.times do |i|
    dp[i + 1] = {dp[i + 1], dp[i]}.max
  end
  dp
end

n, x, y = read_line.split.map(&.to_i64)
a = read_line.split.map(&.to_i64)
sum = a.sum
left = generate_dp(n, a, x)
right = generate_dp(n, a.reverse, y).reverse
puts (1...n - 1).join('\n') { |i| sum + left[i] + right[i + 1] }
0