結果

問題 No.34 砂漠の行商人
ユーザー letrangerjpletrangerjp
提出日時 2017-06-13 22:56:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 497 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-06-28 10:36:07
合計ジャッジ時間 5,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 136 ms
12,288 KB
testcase_05 AC 150 ms
12,416 KB
testcase_06 AC 128 ms
12,544 KB
testcase_07 AC 242 ms
12,544 KB
testcase_08 AC 267 ms
12,544 KB
testcase_09 AC 216 ms
12,800 KB
testcase_10 AC 130 ms
12,800 KB
testcase_11 AC 177 ms
13,440 KB
testcase_12 AC 103 ms
12,544 KB
testcase_13 AC 475 ms
13,568 KB
testcase_14 AC 497 ms
13,312 KB
testcase_15 AC 91 ms
12,160 KB
testcase_16 AC 134 ms
12,288 KB
testcase_17 AC 95 ms
12,288 KB
testcase_18 AC 98 ms
12,416 KB
testcase_19 AC 246 ms
12,672 KB
testcase_20 AC 345 ms
13,440 KB
testcase_21 AC 96 ms
12,416 KB
testcase_22 AC 101 ms
12,288 KB
testcase_23 AC 94 ms
12,288 KB
testcase_24 AC 376 ms
12,928 KB
testcase_25 AC 124 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:5: warning: ambiguous first argument; put parentheses or a space even after `-' operator
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 = Hash.new -1
  visited[start] = V
  q = {start=>V}

  step = 0
  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 [a, b] == 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