結果

問題 No.34 砂漠の行商人
ユーザー letrangerjpletrangerjp
提出日時 2017-06-13 21:31:03
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 774 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-06-28 10:36:50
合計ジャッジ時間 23,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
11,904 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 96 ms
12,160 KB
testcase_03 AC 87 ms
11,904 KB
testcase_04 AC 180 ms
12,288 KB
testcase_05 AC 295 ms
12,544 KB
testcase_06 AC 114 ms
12,416 KB
testcase_07 AC 473 ms
12,288 KB
testcase_08 AC 730 ms
12,800 KB
testcase_09 AC 1,908 ms
13,824 KB
testcase_10 AC 314 ms
12,416 KB
testcase_11 AC 776 ms
12,416 KB
testcase_12 AC 135 ms
12,288 KB
testcase_13 TLE -
testcase_14 AC 4,305 ms
14,848 KB
testcase_15 AC 94 ms
12,288 KB
testcase_16 AC 347 ms
12,800 KB
testcase_17 AC 93 ms
12,032 KB
testcase_18 AC 106 ms
12,160 KB
testcase_19 AC 1,308 ms
14,208 KB
testcase_20 AC 2,192 ms
13,824 KB
testcase_21 AC 97 ms
12,288 KB
testcase_22 AC 114 ms
12,288 KB
testcase_23 AC 93 ms
12,288 KB
testcase_24 AC 2,692 ms
13,952 KB
testcase_25 AC 255 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) }

def f(start, last)
  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
    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