結果

問題 No.367 ナイトの転身
ユーザー rlangevinrlangevin
提出日時 2023-09-04 12:04:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 1,508 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 158,032 KB
最終ジャッジ日時 2024-06-22 10:47:48
合計ジャッジ時間 4,524 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,116 KB
testcase_01 AC 37 ms
54,512 KB
testcase_02 AC 38 ms
56,248 KB
testcase_03 AC 39 ms
56,084 KB
testcase_04 AC 39 ms
54,688 KB
testcase_05 AC 38 ms
55,112 KB
testcase_06 AC 58 ms
67,568 KB
testcase_07 AC 37 ms
55,488 KB
testcase_08 AC 37 ms
55,952 KB
testcase_09 AC 38 ms
54,764 KB
testcase_10 AC 365 ms
157,804 KB
testcase_11 AC 405 ms
158,032 KB
testcase_12 AC 223 ms
108,104 KB
testcase_13 AC 209 ms
107,408 KB
testcase_14 AC 205 ms
106,800 KB
testcase_15 AC 77 ms
77,864 KB
testcase_16 AC 213 ms
103,820 KB
testcase_17 AC 88 ms
78,632 KB
testcase_18 AC 94 ms
79,160 KB
testcase_19 AC 107 ms
80,600 KB
testcase_20 AC 86 ms
79,780 KB
testcase_21 AC 108 ms
80,580 KB
testcase_22 AC 50 ms
66,352 KB
testcase_23 AC 69 ms
74,776 KB
testcase_24 AC 76 ms
77,556 KB
testcase_25 AC 68 ms
73,284 KB
testcase_26 AC 59 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
inf = 10 ** 18
def bfs(G, s, N):
    Q = deque([])
    dist = [inf] * N
    par = [inf] * N
    dist[s] = 0
    for u in G[s]:
        par[u] = s
        dist[u] = 1
        Q.append(u)

    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != inf:
                continue
            dist[v] = dist[u] + 1
            par[v] = u
            Q.append(v)
            
    return dist

H, W = map(int, input().split())
G = []
sx, sy, gx, gy = -1, -1, -1, -1
for i in range(H):
    s = list(input())
    for j in range(W):
        if s[j] == "S":
            sx, sy = i, j
        if s[j] == "G":
            gx, gy = i, j
    G.append(s)

dx = [[1, 1, 2, 2, -1, -1, -2, -2], [1, 1, -1, -1]]
dy = [[2, -2, 1, -1, 2, -2, 1, -1], [1, -1, 1, -1]]
K = [8, 4]

N = 2 * H * W
GG = [[] for i in range(N)]
def f(n, i, j):
    return n * H * W + i * W + j

for i in range(H):
    for j in range(W):
        for n in range(2):
            for k in range(K[n]):
                x = i + dx[n][k]
                y = j + dy[n][k]
                if x < 0 or x > H - 1 or y < 0 or y > W - 1:
                    continue
                if G[x][y] == "R":
                    nn = 1 - n
                else:
                    nn = n
                now = f(n, i, j)
                nex = f(nn, x, y)
                GG[now].append(nex)
            

D = bfs(GG, f(0, sx, sy), N)
ans = min(D[f(0, gx, gy)], D[f(1, gx, gy)])
print(ans) if ans != inf else print(-1)
0