結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー tomeruntomerun
提出日時 2022-05-20 21:58:58
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 893 bytes
コンパイル時間 13,194 ms
コンパイル使用メモリ 295,552 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-09-20 08:05:02
合計ジャッジ時間 13,442 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 26 ms
6,272 KB
testcase_08 AC 37 ms
6,144 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 30 ms
6,144 KB
testcase_13 AC 30 ms
6,144 KB
testcase_14 AC 29 ms
6,144 KB
testcase_15 AC 29 ms
6,144 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 32 ms
6,144 KB
testcase_21 AC 33 ms
6,144 KB
testcase_22 AC 28 ms
6,144 KB
testcase_23 AC 27 ms
6,144 KB
testcase_24 AC 28 ms
6,144 KB
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = read_line.split.map(&.to_i)
a = Array.new(h) { read_line.split.map(&.to_i) }
dp0 = Array.new(h) { Array.new(w, -1) }
dp1 = Array.new(h) { Array.new(w, -1) }
dp0[0][0] = a[0][0]
h.times do |i|
  w.times do |j|
    if j < w - 1
      if dp0[i][j] > a[i][j + 1]
        dp0[i][j + 1] = {dp0[i][j + 1], dp0[i][j] + a[i][j + 1]}.max
      end
      if dp1[i][j] > a[i][j + 1]
        dp1[i][j + 1] = {dp1[i][j + 1], dp1[i][j] + a[i][j + 1]}.max
      end
      dp1[i][j + 1] = {dp1[i][j + 1], dp0[i][j]}.max
    end
    if i < h - 1
      if dp0[i][j] > a[i + 1][j]
        dp0[i + 1][j] = {dp0[i + 1][j], dp0[i][j] + a[i + 1][j]}.max
      end
      if dp1[i][j] > a[i + 1][j]
        dp1[i + 1][j] = {dp1[i + 1][j], dp1[i][j] + a[i + 1][j]}.max
      end
      dp1[i + 1][j] = {dp1[i + 1][j], dp0[i][j]}.max
    end
  end
end
puts [dp0[-1][-1], dp1[-1][-1]].max > a[-1][-1] ? "Yes" : "No"
0