結果

問題 No.1536 仕切り直し
ユーザー tomeruntomerun
提出日時 2021-06-06 18:42:40
言語 Crystal
(1.11.2)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 1,274 bytes
コンパイル時間 17,118 ms
コンパイル使用メモリ 297,396 KB
実行使用メモリ 61,324 KB
最終ジャッジ日時 2024-05-04 00:49:39
合計ジャッジ時間 15,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 39 ms
24,004 KB
testcase_05 AC 75 ms
49,048 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 33 ms
18,644 KB
testcase_09 AC 47 ms
33,600 KB
testcase_10 AC 108 ms
61,324 KB
testcase_11 AC 24 ms
14,960 KB
testcase_12 AC 83 ms
55,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = read_line.split.map(&.to_i)
a = read_line.split.map(&.to_i).reverse
dp_max = Array.new(n + 1) { Array.new(m + 1, -(1i64 << 58)) }
dp_min = Array.new(n + 1) { Array.new(m + 1, (1i64 << 58)) }
use_max = Array.new(n + 1) { Array.new(m + 1, false) }
use_min = Array.new(n + 1) { Array.new(m + 1, false) }
dp_max[0][0] = 0
dp_min[0][0] = 0
n.times do |i|
  0.upto(m) do |j|
    if dp_max[i + 1][j] < dp_max[i][j] + a[i]
      dp_max[i + 1][j] = dp_max[i][j] + a[i]
      use_max[i + 1][j] = false
    end
    if j < m && dp_min[i + 1][j + 1] > -dp_max[i][j] - a[i]
      dp_min[i + 1][j + 1] = -dp_max[i][j] - a[i]
      use_min[i + 1][j + 1] = true
    end
    if j < m && dp_max[i + 1][j + 1] < -dp_min[i][j] - a[i]
      dp_max[i + 1][j + 1] = -dp_min[i][j] - a[i]
      use_max[i + 1][j + 1] = true
    end
    if dp_min[i + 1][j] > dp_min[i][j] + a[i]
      dp_min[i + 1][j] = dp_min[i][j] + a[i]
      use_min[i + 1][j] = false
    end
  end
end
mi = 0
mv = 0i64
0.upto(m) do |i|
  if dp_max[n][i] > mv
    mi = i
    mv = dp_max[n][i]
  end
end
ans = [] of Int32
cur_max = true
n.downto(1) do |i|
  use = cur_max ? use_max : use_min
  if use[i][mi]
    ans << n - i
    mi -= 1
    cur_max = !cur_max
  end
end
while ans.size < m
  ans << n
end
puts ans.join("\n")
0