結果

問題 No.1375 Divide and Update
ユーザー yuruhiyayuruhiya
提出日時 2021-02-06 17:56:53
言語 Ruby
(3.3.0)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 42,880 KB
最終ジャッジ日時 2024-07-03 05:23:46
合計ジャッジ時間 6,656 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 78 ms
12,288 KB
testcase_03 AC 77 ms
12,288 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 76 ms
12,288 KB
testcase_07 AC 77 ms
12,416 KB
testcase_08 AC 77 ms
12,416 KB
testcase_09 AC 80 ms
12,160 KB
testcase_10 AC 341 ms
40,576 KB
testcase_11 AC 314 ms
38,272 KB
testcase_12 AC 208 ms
25,088 KB
testcase_13 AC 190 ms
22,272 KB
testcase_14 AC 370 ms
42,624 KB
testcase_15 AC 359 ms
42,496 KB
testcase_16 AC 364 ms
42,496 KB
testcase_17 AC 367 ms
42,368 KB
testcase_18 AC 368 ms
42,880 KB
testcase_19 AC 367 ms
42,752 KB
testcase_20 AC 363 ms
42,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

n, x, y = gets.split.map(&:to_i)
a = gets.split.map(&:to_i)
left = func(n, a, x)
right = func(n, a.reverse, y).reverse
sum = a.sum
puts (1...n - 1).map { |i| sum + left[i] + right[i + 1] }.join("\n")
0