結果
問題 | No.3063 幅優先探索 |
ユーザー | siman |
提出日時 | 2021-02-24 07:01:24 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 542 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 7,168 KB |
実行使用メモリ | 86,528 KB |
最終ジャッジ日時 | 2024-09-23 05:57:14 |
合計ジャッジ時間 | 6,478 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
12,032 KB |
testcase_01 | AC | 86 ms
12,032 KB |
testcase_02 | AC | 86 ms
12,032 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | AC | 88 ms
12,032 KB |
testcase_09 | AC | 87 ms
12,032 KB |
testcase_10 | AC | 87 ms
12,032 KB |
コンパイルメッセージ
Syntax OK
ソースコード
R, C = gets.split.map(&:to_i) SY, SX = gets.split.map(&:to_i) GY, GX = gets.split.map(&:to_i) G = R.times.map { gets.chomp.chars } DY = [-1, 0, 1, 0] DX = [0, 1, 0, -1] queue = [] queue << [SY - 1, SX - 1, 0] visited = Array.new(R) { Array.new(C, false) } until queue.empty? y, x, dist = queue.shift if y == GY - 1 && x == GX - 1 puts dist exit end next if visited[y][x] visited[y][x] = true 4.times do |i| ny = y + DY[i] nx = x + DX[i] next if G[ny][nx] == '#' queue << [ny, nx, dist + 1] end end