結果

問題 No.367 ナイトの転身
ユーザー roarisroaris
提出日時 2019-11-01 15:42:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 1,901 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 86,996 KB
最終ジャッジ日時 2024-09-14 22:43:20
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 45 ms
54,272 KB
testcase_02 AC 45 ms
54,272 KB
testcase_03 AC 46 ms
54,144 KB
testcase_04 AC 45 ms
54,144 KB
testcase_05 AC 48 ms
54,272 KB
testcase_06 AC 49 ms
54,656 KB
testcase_07 AC 46 ms
54,272 KB
testcase_08 AC 47 ms
54,400 KB
testcase_09 AC 46 ms
54,016 KB
testcase_10 AC 161 ms
83,456 KB
testcase_11 AC 240 ms
86,996 KB
testcase_12 AC 184 ms
80,636 KB
testcase_13 AC 171 ms
80,332 KB
testcase_14 AC 176 ms
80,024 KB
testcase_15 AC 101 ms
76,684 KB
testcase_16 AC 163 ms
79,720 KB
testcase_17 AC 111 ms
77,076 KB
testcase_18 AC 115 ms
76,780 KB
testcase_19 AC 118 ms
77,248 KB
testcase_20 AC 96 ms
76,736 KB
testcase_21 AC 137 ms
77,520 KB
testcase_22 AC 53 ms
61,184 KB
testcase_23 AC 89 ms
76,800 KB
testcase_24 AC 90 ms
76,664 KB
testcase_25 AC 76 ms
72,192 KB
testcase_26 AC 63 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque

def bfs(sx, sy):
    dist = [[[-1] * W for _ in range(H)] for _ in range(2)]
    dist[0][sx][sy] = 0
    q = deque([])
    q.append((sx, sy, 0))
    
    while q:
        cx, cy, f = q.popleft()
        
        if f == 0:
            for nx, ny in [(cx+1, cy+2), (cx+1, cy-2), (cx+2, cy+1), (cx+2, cy-1), (cx-1, cy+2), (cx-1, cy-2), (cx-2, cy+1), (cx-2, cy-1)]:
                if 0<=nx<H and 0<=ny<W and S[nx][ny] == 'R':
                    if dist[1][nx][ny] == -1:
                        dist[1][nx][ny] = dist[0][cx][cy]+1
                        q.append((nx, ny, 1))
                elif 0<=nx<H and 0<=ny<W and S[nx][ny] != 'R':
                    if dist[0][nx][ny] == -1:
                        dist[0][nx][ny] = dist[0][cx][cy]+1
                        q.append((nx, ny, 0))
        elif f == 1:
            for nx, ny in [(cx+1, cy+1), (cx+1, cy-1), (cx-1, cy+1), (cx-1, cy-1)]:
                if 0<=nx<H and 0<=ny<W and S[nx][ny] == 'R':
                    if dist[0][nx][ny] == -1:
                        dist[0][nx][ny] = dist[1][cx][cy]+1
                        q.append((nx, ny, 0))
                elif 0<=nx<H and 0<=ny<W and S[nx][ny] != 'R':
                    if dist[1][nx][ny] == -1:
                        dist[1][nx][ny] = dist[1][cx][cy]+1
                        q.append((nx, ny, 1))
    
    return dist

H, W = map(int, input().split())
S = [input() for _ in range(H)]

for i in range(H):
    for j in range(W):
        if S[i][j] == 'S':
            sx, sy = i, j
        
        if S[i][j] == 'G':
            gx, gy = i, j
            
dist = bfs(sx, sy)

if dist[0][gx][gy] == -1 and dist[1][gx][gy] == -1:
    print(-1)
elif dist[0][gx][gy] == -1:
    print(dist[1][gx][gy])
elif dist[1][gx][gy] == -1:
    print(dist[0][gx][gy])
else:
    print(min(dist[0][gx][gy], dist[1][gx][gy]))
0