結果

問題 No.34 砂漠の行商人
ユーザー letrangerjpletrangerjp
提出日時 2017-06-13 22:42:51
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 710 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-09-24 17:03:25
合計ジャッジ時間 5,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,288 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 98 ms
12,416 KB
testcase_03 AC 82 ms
12,288 KB
testcase_04 WA -
testcase_05 AC 151 ms
12,544 KB
testcase_06 AC 120 ms
12,544 KB
testcase_07 AC 232 ms
12,928 KB
testcase_08 AC 257 ms
12,928 KB
testcase_09 AC 208 ms
12,928 KB
testcase_10 AC 127 ms
12,928 KB
testcase_11 AC 164 ms
13,184 KB
testcase_12 AC 99 ms
12,672 KB
testcase_13 AC 462 ms
13,696 KB
testcase_14 AC 464 ms
13,184 KB
testcase_15 AC 89 ms
12,416 KB
testcase_16 AC 124 ms
12,416 KB
testcase_17 AC 87 ms
12,416 KB
testcase_18 AC 90 ms
12,544 KB
testcase_19 AC 233 ms
13,056 KB
testcase_20 AC 330 ms
13,184 KB
testcase_21 AC 95 ms
12,544 KB
testcase_22 AC 97 ms
12,416 KB
testcase_23 AC 88 ms
12,544 KB
testcase_24 AC 367 ms
13,312 KB
testcase_25 AC 122 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, V, SX, SY, GX, GY = gets.split.take(6).map(&:to_i)
MAP = N.times.map{ gets.split.take(N).map(&:to_i) }
MAX_DMG = MAP.map{|y|y.max}.max

def f(start, last)
  visited = Hash.new 0
  visited[start] = V
  q = Hash.new 0
  q[start] = V

  step = -1
  while !q.empty?
    step += 1
    qq = {}
    q.each{|(x,y), hp|
      [[x+1, y], [x-1, y], [x, y+1], [x, y-1]].each{|a, b|
        next if !a.between?(0, N-1)
        next if !b.between?(0, N-1)
        _hp = hp - MAP[b][a]
        next if _hp < 1
        return step if [x, y] == last
        if visited[[a,b]] < _hp
          visited[[a,b]] = _hp
          qq[[a,b]] = _hp
        end
      }
    }
    q = qq
  end
  -1
end

p f([SX-1, SY-1], [GX-1, GY-1])
0