結果

問題 No.34 砂漠の行商人
ユーザー letrangerjpletrangerjp
提出日時 2017-06-13 21:40:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,164 ms / 5,000 ms
コード長 976 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-06-28 10:36:01
合計ジャッジ時間 8,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,032 KB
testcase_01 AC 84 ms
11,904 KB
testcase_02 AC 91 ms
12,032 KB
testcase_03 AC 86 ms
12,032 KB
testcase_04 AC 180 ms
12,288 KB
testcase_05 AC 296 ms
12,416 KB
testcase_06 AC 114 ms
12,160 KB
testcase_07 AC 472 ms
12,416 KB
testcase_08 AC 719 ms
13,056 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 90 ms
12,288 KB
testcase_11 AC 92 ms
12,416 KB
testcase_12 AC 136 ms
12,288 KB
testcase_13 AC 91 ms
12,288 KB
testcase_14 AC 90 ms
12,288 KB
testcase_15 AC 86 ms
12,160 KB
testcase_16 AC 87 ms
12,032 KB
testcase_17 AC 90 ms
12,288 KB
testcase_18 AC 85 ms
12,032 KB
testcase_19 AC 1,312 ms
14,080 KB
testcase_20 AC 2,164 ms
13,696 KB
testcase_21 AC 95 ms
12,288 KB
testcase_22 AC 89 ms
12,288 KB
testcase_23 AC 87 ms
12,160 KB
testcase_24 AC 90 ms
12,288 KB
testcase_25 AC 251 ms
12,416 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)
  # マンハッタン距離 * 最大ダメージ < hp の枝刈り
  ml = (last[0] - start[0]).abs + (last[1] - start[1]).abs
  return ml if V > ml * MAX_DMG

  visited = N.times.map{[-1]*N}
  visited[start[0]][start[1]] = V
  q = [[0, V] + start]

  res = -1
  while !q.empty?
    step, hp, x, y = q.shift
    if [x, y] == last
      res = step
      break
    else
    end

    [[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
      _step = step + 1
      if visited[a][b] < _hp
        visited[a][b] = _hp
        elem = [_step, _hp, a, b]
        # q[q.bsearch_index{|v|(v <=> elem) < 0}||q.size, 0] = [elem]
        q << elem
      end
    }
  end
  res
end

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