結果

問題 No.367 ナイトの転身
ユーザー 👑 rin204rin204
提出日時 2022-11-03 01:03:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 1,140 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 85,844 KB
最終ジャッジ日時 2024-07-17 12:38:00
合計ジャッジ時間 3,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,408 KB
testcase_01 AC 46 ms
54,192 KB
testcase_02 AC 43 ms
54,420 KB
testcase_03 AC 43 ms
54,652 KB
testcase_04 AC 44 ms
54,128 KB
testcase_05 AC 44 ms
54,564 KB
testcase_06 AC 48 ms
56,088 KB
testcase_07 AC 47 ms
55,184 KB
testcase_08 AC 42 ms
54,144 KB
testcase_09 AC 42 ms
55,512 KB
testcase_10 AC 146 ms
82,172 KB
testcase_11 AC 200 ms
85,844 KB
testcase_12 AC 154 ms
79,428 KB
testcase_13 AC 139 ms
79,284 KB
testcase_14 AC 148 ms
79,024 KB
testcase_15 AC 91 ms
76,428 KB
testcase_16 AC 155 ms
79,228 KB
testcase_17 AC 98 ms
76,916 KB
testcase_18 AC 105 ms
76,880 KB
testcase_19 AC 111 ms
77,440 KB
testcase_20 AC 97 ms
77,056 KB
testcase_21 AC 114 ms
77,264 KB
testcase_22 AC 54 ms
64,172 KB
testcase_23 AC 83 ms
76,428 KB
testcase_24 AC 87 ms
76,156 KB
testcase_25 AC 78 ms
76,196 KB
testcase_26 AC 66 ms
70,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int, input().split())
S = [input() for _ in range(h)]
inf = 1 << 60
dist = [inf] * (h * w * 2)

def f(i, j, t):
    return (i * w + j) * 2 + t

directions = []
directions.append([])
for i in [-2, -1, 1, 2]:
    for j in [-2, -1, 1, 2]:
        if abs(i) != abs(j):
            directions[0].append((i, j))
directions.append(((1, 1), (1, -1), (-1, 1), (-1, -1)))

for i in range(h):
    for j in range(w):
        if S[i][j] == "S":
            si = i
            sj = j
        elif S[i][j] == "G":
            gi = i
            gj = j

queue = deque()
dist[f(si, sj, 0)] = 0
queue.append((si, sj, 0))
while queue:
    i, j, t = queue.popleft()
    for di, dj in directions[t]:
        ni = i + di
        nj = j + dj
        if ni < 0 or ni >= h or nj < 0 or nj >= w:
            continue
        if S[ni][nj] == "R":
            nt = t ^ 1
        else:
            nt = t
        if dist[f(ni, nj, nt)] == inf:
            dist[f(ni, nj, nt)] = dist[f(i, j, t)] + 1
            queue.append((ni, nj, nt))

ans = min(dist[f(gi, gj, 0)], dist[f(gi, gj, 1)])
if ans == inf:
    ans = -1
print(ans)
0