結果

問題 No.367 ナイトの転身
ユーザー convexineqconvexineq
提出日時 2021-01-02 16:09:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-10-12 04:59:46
合計ジャッジ時間 4,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,144 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 45 ms
54,016 KB
testcase_03 AC 43 ms
54,144 KB
testcase_04 AC 43 ms
53,760 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 49 ms
55,808 KB
testcase_07 AC 45 ms
54,016 KB
testcase_08 AC 44 ms
54,272 KB
testcase_09 AC 43 ms
53,632 KB
testcase_10 AC 148 ms
83,064 KB
testcase_11 AC 242 ms
86,528 KB
testcase_12 AC 193 ms
80,580 KB
testcase_13 AC 172 ms
80,560 KB
testcase_14 AC 177 ms
80,236 KB
testcase_15 AC 113 ms
76,732 KB
testcase_16 AC 184 ms
80,048 KB
testcase_17 AC 105 ms
76,928 KB
testcase_18 AC 117 ms
76,840 KB
testcase_19 AC 130 ms
77,740 KB
testcase_20 AC 111 ms
77,056 KB
testcase_21 AC 134 ms
77,608 KB
testcase_22 AC 53 ms
62,592 KB
testcase_23 AC 92 ms
76,672 KB
testcase_24 AC 91 ms
76,800 KB
testcase_25 AC 87 ms
76,416 KB
testcase_26 AC 60 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
b = [input() for _ in range(h)]
for i in range(h):
    for j in range(w):
        if b[i][j] == "S":
            si,sj = i,j
        elif b[i][j] == "G":
            gi,gj = i,j
from collections import deque
INF = 10**9
dist = [[[INF]*w for _ in range(h)] for _ in range(2)]
dist[0][si][sj] = 0
q = deque([(0,si,sj)])
while q:
    kind,i,j = q.popleft()
    d = dist[kind][i][j]
    if kind == 0:
        for ni,nj in [(i-1,j-2),(i-1,j+2),(i+1,j-2),(i+1,j+2),(i-2,j-1),(i-2,j+1),(i+2,j-1),(i+2,j+1)]:
            if 0 <= ni < h and 0 <= nj < w:
                nkind = kind^(b[ni][nj] == "R")
                if dist[nkind][ni][nj] == INF:
                    dist[nkind][ni][nj] = d+1
                    q.append((nkind,ni,nj))
    else:
        for ni,nj in [(i-1,j-1),(i+1,j-1),(i-1,j+1),(i+1,j+1)]:
            if 0 <= ni < h and 0 <= nj < w:
                nkind = kind^(b[ni][nj] == "R")
                if dist[nkind][ni][nj] == INF:
                    dist[nkind][ni][nj] = d+1
                    q.append((nkind,ni,nj))
ans = min(dist[0][gi][gj],dist[1][gi][gj])
print(ans if ans != INF else -1)
0