結果
問題 | No.424 立体迷路 |
ユーザー | ronpoo |
提出日時 | 2023-08-28 16:56:35 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 64 ms / 2,000 ms |
コード長 | 1,055 bytes |
コンパイル時間 | 220 ms |
コンパイル使用メモリ | 82,132 KB |
実行使用メモリ | 69,120 KB |
最終ジャッジ日時 | 2024-06-09 12:08:13 |
合計ジャッジ時間 | 2,021 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,760 KB |
testcase_01 | AC | 35 ms
53,760 KB |
testcase_02 | AC | 36 ms
53,632 KB |
testcase_03 | AC | 40 ms
53,632 KB |
testcase_04 | AC | 38 ms
54,400 KB |
testcase_05 | AC | 37 ms
54,016 KB |
testcase_06 | AC | 35 ms
53,632 KB |
testcase_07 | AC | 35 ms
53,888 KB |
testcase_08 | AC | 36 ms
54,016 KB |
testcase_09 | AC | 35 ms
54,144 KB |
testcase_10 | AC | 35 ms
53,888 KB |
testcase_11 | AC | 36 ms
53,632 KB |
testcase_12 | AC | 36 ms
54,144 KB |
testcase_13 | AC | 36 ms
53,888 KB |
testcase_14 | AC | 37 ms
53,888 KB |
testcase_15 | AC | 36 ms
54,144 KB |
testcase_16 | AC | 35 ms
53,760 KB |
testcase_17 | AC | 37 ms
54,272 KB |
testcase_18 | AC | 37 ms
54,400 KB |
testcase_19 | AC | 37 ms
54,272 KB |
testcase_20 | AC | 39 ms
54,144 KB |
testcase_21 | AC | 37 ms
54,144 KB |
testcase_22 | AC | 38 ms
54,656 KB |
testcase_23 | AC | 40 ms
54,272 KB |
testcase_24 | AC | 64 ms
69,120 KB |
testcase_25 | AC | 63 ms
69,120 KB |
ソースコード
from collections import deque h, w = map(int, input().split()) sx, sy, gx, gy = map(int, input().split()) sx, sy, gx, gy = sx-1, sy-1, gx-1, gy-1 b = [list(input()) for _ in range(h)] way = [(-1, 0), (1, 0), (0, -1), (0, 1)] dist = [[float('inf')]*w for _ in range(h)] dist[sx][sy] = 0 que = deque([(sx, sy)]) while que: x, y = que.popleft() hight = int(b[x][y]) for i, j in way: nx = x + i ny = y + j if 0 <= nx < h and 0 <= ny < w: nhight = int(b[nx][ny]) if -1 <= hight - nhight <= 1 and dist[nx][ny] == float('inf'): dist[nx][ny] = dist[x][y] + 1 que.append((nx, ny)) nx += i ny += j if 0 <= nx < h and 0 <= ny < w: nhight = int(b[nx][ny]) mhight = int(b[nx-i][ny-j]) if mhight < hight == nhight and dist[nx][ny] == float('inf'): dist[nx][ny] = dist[x][y] + 1 que.append((nx, ny)) if dist[gx][gy] != float('inf'): print('YES') else: print('NO')