結果

問題 No.2412 YOU Grow Bigger!
ユーザー tomeruntomerun
提出日時 2023-08-11 23:14:19
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 2,122 bytes
コンパイル時間 13,960 ms
コンパイル使用メモリ 295,896 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-11-18 18:33:20
合計ジャッジ時間 15,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 15 ms
8,960 KB
testcase_10 AC 9 ms
6,816 KB
testcase_11 AC 6 ms
6,816 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 11 ms
7,040 KB
testcase_14 AC 10 ms
6,816 KB
testcase_15 AC 12 ms
7,680 KB
testcase_16 AC 15 ms
8,448 KB
testcase_17 AC 12 ms
7,552 KB
testcase_18 AC 10 ms
6,820 KB
testcase_19 AC 8 ms
6,816 KB
testcase_20 AC 7 ms
6,816 KB
testcase_21 AC 7 ms
6,820 KB
testcase_22 AC 12 ms
7,552 KB
testcase_23 AC 9 ms
6,820 KB
testcase_24 WA -
testcase_25 AC 8 ms
6,820 KB
testcase_26 AC 9 ms
6,816 KB
testcase_27 WA -
testcase_28 AC 10 ms
6,912 KB
testcase_29 AC 14 ms
8,192 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = read_line.split.map(&.to_i)
s = Array.new(h) { read_line.chars.map { |ch| ch == '#' } }
h.times do |i|
  w.times do |j|
    if s[i][j]
      -2.upto(0) do |dy|
        -2.upto(0) do |dx|
          ny = i + dy
          nx = j + dx
          next if ny < 0 || h <= ny || nx < 0 || w <= nx
          s[ny][nx] = true
        end
      end
    end
  end
end
g = Array.new(h * w + 2) { [] of Tuple(Int32, Int32) }
start = h * w
goal = h * w + 1
3.times do |i|
  1.upto(h - 1) do |j|
    g[start] << {j * w + i, 1}
  end
end
(h - 3).upto(h - 1) do |i|
  0.upto(w - 4) do |j|
    g[start] << {i * w + j, 1}
  end
end
h.times do |i|
  if s[i][0]
    g[start] << {i * w, 0}
  end
  g[i * w + w - 3] << {goal, 0} if i < h - 3
end
w.times do |i|
  if s[h - 3][i]
    g[start] << {(h - 3) * w + i, 0}
  end
  g[i] << {goal, 0} if i > 0
end
h.times do |i|
  w.times do |j|
    if i > 0 && s[i - 1][j]
      g[i * w + j] << {(i - 1) * w + j, 0}
    end
    if i < h - 1 && s[i + 1][j]
      g[i * w + j] << {(i + 1) * w + j, 0}
    end
    if j > 0 && s[i][j - 1]
      g[i * w + j] << {i * w + j - 1, 0}
    end
    if j < w - 1 && s[i][j + 1]
      g[i * w + j] << {i * w + j + 1, 0}
    end
    [[-1, 0], [-1, 1], [-1, 2], [0, -1], [0, 0], [0, 1], [0, 2], [0, 3], [1, -1], [1, 0], [1, 1], [1, 2], [1, 3], [2, -1], [2, 0], [2, 1], [2, 2], [2, 3], [3, 0], [3, 1], [3, 2]].each do |mv|
      my = mv[0] + i
      mx = mv[1] = j
      next if my < 0 || h <= my || mx < 0 || w <= mx
      next if my < 3 && mx < 3
      next if my >= h - 3 && mx >= w - 3
      -2.upto(0) do |dy|
        -2.upto(0) do |dx|
          ny = my + dy
          nx = mx + dx
          next if ny < 0 || h <= ny || nx < 0 || w <= nx
          g[i * w + j] << {ny * w + nx, 1}
        end
      end
    end
  end
end
dist = Array.new(g.size, 1 << 29)
dist[start] = 0
q = Deque.new([{start, 0}])
while !q.empty?
  cp, cd = q.shift
  # puts [cp // w, cp % w, cd]
  g[cp].each do |adj, d|
    nd = cd + d
    next if dist[adj] <= nd
    dist[adj] = nd
    if d == 0
      q.unshift({adj, nd})
    else
      q << {adj, nd}
    end
  end
end
puts dist[goal]
0