結果

問題 No.424 立体迷路
ユーザー rlangevinrlangevin
提出日時 2023-02-08 12:37:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 1,584 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-07-06 01:22:02
合計ジャッジ時間 2,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,016 KB
testcase_01 AC 47 ms
54,144 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 43 ms
54,784 KB
testcase_04 AC 44 ms
54,272 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 42 ms
54,144 KB
testcase_07 AC 42 ms
54,144 KB
testcase_08 AC 42 ms
54,016 KB
testcase_09 AC 43 ms
54,272 KB
testcase_10 AC 43 ms
54,144 KB
testcase_11 AC 43 ms
54,528 KB
testcase_12 AC 45 ms
54,272 KB
testcase_13 AC 44 ms
54,400 KB
testcase_14 AC 45 ms
54,656 KB
testcase_15 AC 44 ms
54,656 KB
testcase_16 AC 44 ms
54,528 KB
testcase_17 AC 74 ms
72,704 KB
testcase_18 AC 76 ms
73,344 KB
testcase_19 AC 74 ms
73,088 KB
testcase_20 AC 75 ms
73,088 KB
testcase_21 AC 43 ms
54,016 KB
testcase_22 AC 44 ms
54,656 KB
testcase_23 AC 43 ms
53,760 KB
testcase_24 AC 65 ms
68,608 KB
testcase_25 AC 64 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs(G, s, N):
    Q = deque([])
    dist = [-1] * N
    par = [-1] * N
    sz = [1] * N
    dist[s] = 0
    rev = [0] * N
    for u in G[s]:
        par[u] = s
        dist[u] = 1
        sz[u] += sz[s]
        Q.append(u)
 
    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != -1:
                continue
            if v < u:
                rev[v] = rev[u] + 1
            else:
                rev[v] = rev[u]
            dist[v] = dist[u] + 1
            par[v] = u
            sz[v] += sz[u]
            Q.append(v)
            
    return dist

def f(h,w):
    return h * W + w

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 = []
for i in range(H):
    b = list(input())
    b = list(map(int, b))
    B.append(b)

G = [[] for i in range(H * W)]
dx = [1, 0, -1, 0, 2, 0, -2, 0]
dy = [0, 1, 0, -1, 0, 2, 0, -2]
for i in range(H):
    for j in range(W):
        for k in range(8):
            x = i + dx[k]
            y = j + dy[k]
            if x < 0 or x > H - 1 or y < 0 or y > W - 1:
                continue
            if k <= 3:
                if abs(B[i][j] - B[x][y]) <= 1:
                    G[f(i, j)].append(f(x, y))
            else:
                if abs(B[i][j] - B[x][y]) == 0:
                    mx, my = i + dx[k]//2, j + dy[k]//2
                    if B[mx][my] < B[x][y]:
                        G[f(i, j)].append(f(x, y))

D = bfs(G, f(sx, sy), H * W)
print("YES") if D[f(gx, gy)] != -1 else print("NO")
0