結果

問題 No.34 砂漠の行商人
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2015-06-15 21:29:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 494 ms / 5,000 ms
コード長 1,305 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-06-28 10:17:49
合計ジャッジ時間 6,089 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 88 ms
11,904 KB
testcase_02 AC 100 ms
12,288 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 145 ms
12,544 KB
testcase_05 AC 159 ms
12,672 KB
testcase_06 AC 133 ms
12,288 KB
testcase_07 AC 256 ms
13,056 KB
testcase_08 AC 285 ms
13,440 KB
testcase_09 AC 227 ms
13,184 KB
testcase_10 AC 146 ms
13,184 KB
testcase_11 AC 193 ms
13,696 KB
testcase_12 AC 107 ms
12,416 KB
testcase_13 AC 485 ms
14,080 KB
testcase_14 AC 494 ms
13,952 KB
testcase_15 AC 98 ms
12,288 KB
testcase_16 AC 137 ms
12,544 KB
testcase_17 AC 100 ms
12,672 KB
testcase_18 AC 99 ms
11,776 KB
testcase_19 AC 262 ms
13,696 KB
testcase_20 AC 358 ms
14,080 KB
testcase_21 AC 107 ms
12,928 KB
testcase_22 AC 113 ms
12,928 KB
testcase_23 AC 98 ms
12,160 KB
testcase_24 AC 397 ms
14,080 KB
testcase_25 AC 132 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Point
  attr_reader :x, :y

  def initialize(x, y)
    @x = x
    @y = y
  end

  def in?(n)
    0 < @x && @x <= n && 0 < @y && @y <= n
  end

  def left
    Point.new(@x + 1, @y)
  end

  def right
    Point.new(@x - 1, @y)
  end

  def up
    Point.new(@x, @y + 1)
  end

  def down
    Point.new(@x, @y - 1)
  end

  def eql?(other)
    @x == other.x && @y == other.y
  end

  def ==(other)
    eql?(other)
  end

  def hash
    @x + @y * 100
  end
end

n, v, sx, sy, gx, gy = gets.split.map(&:to_i)
map = Hash.new(0)
vmap = Hash.new(-1)
(1..n).each do |y|
  gets.split.map(&:to_i).each.with_index(1) do |l, x|
    map[Point.new(x, y)] = l
  end
end

s = Point.new(sx, sy)
g = Point.new(gx, gy)

count = 0
list = {}
list[s] = v
vmap[s] = v
loop do
  count += 1
  next_list = {}
  list.each do |point, life|
    [point.left, point.right, point.up, point.down].each do |next_point|
      if next_point.in?(n)
        next_life = life - map[next_point]
        if next_life > 0
          if next_point == g
            puts count
            exit
          elsif next_life > vmap[next_point]
            vmap[next_point] = next_life
            next_list[next_point] = next_life
          end
        end
      end
    end
  end
  if next_list.empty?
    break
  end
  list = next_list
end
puts(-1)
0