結果

問題 No.367 ナイトの転身
ユーザー lloyzlloyz
提出日時 2023-02-13 22:34:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 1,070 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 111,744 KB
最終ジャッジ日時 2024-07-16 13:40:45
合計ジャッジ時間 3,742 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 38 ms
54,272 KB
testcase_02 AC 38 ms
54,120 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 41 ms
54,144 KB
testcase_05 AC 40 ms
53,888 KB
testcase_06 AC 47 ms
56,704 KB
testcase_07 AC 40 ms
53,888 KB
testcase_08 AC 38 ms
53,888 KB
testcase_09 AC 39 ms
54,016 KB
testcase_10 AC 274 ms
109,824 KB
testcase_11 AC 338 ms
111,744 KB
testcase_12 AC 113 ms
88,912 KB
testcase_13 AC 124 ms
88,960 KB
testcase_14 AC 164 ms
88,832 KB
testcase_15 AC 78 ms
76,928 KB
testcase_16 AC 170 ms
87,424 KB
testcase_17 AC 87 ms
77,952 KB
testcase_18 AC 88 ms
78,336 KB
testcase_19 AC 91 ms
78,868 KB
testcase_20 AC 76 ms
78,336 KB
testcase_21 AC 99 ms
79,488 KB
testcase_22 AC 47 ms
61,312 KB
testcase_23 AC 58 ms
68,096 KB
testcase_24 AC 62 ms
70,912 KB
testcase_25 AC 63 ms
69,376 KB
testcase_26 AC 53 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int, input().split())
S = [list(input()) for _ in range(h)]

for i in range(h):
    for j in range(w):
        if S[i][j] == 'S':
            si, sj = i, j
        elif S[i][j] == 'G':
            gi, gj = i, j
INF = 10**18
DP = [[[INF for _ in range(2)] for _ in range(w)] for _ in range(h)]
DP[si][sj][0] = 0
Directions = [[(1, 2), (2, 1), (2, -1), (1, -2), (-1, -2), (-2, -1), (-2, 1), (-1, 2)],
              [(1, 1), (1, -1), (-1, -1), (-1, 1)]]
Que = deque([(si, sj, 0)])
while Que:
    ci, cj, idx = Que.popleft()
    if ci == gi and cj == gj:
        break
    cc = DP[ci][cj][idx]
    for di, dj in Directions[idx]:
        ni, nj = ci + di, cj + dj
        if 0 <= ni < h and 0 <= nj < w:
            if S[ni][nj] == 'R':
                nidx = idx ^ 1
            else:
                nidx = idx
            if cc + 1 >= DP[ni][nj][nidx]:
                continue
            DP[ni][nj][nidx] = cc + 1
            Que.append((ni, nj, nidx))

if min(DP[gi][gj]) == INF:
    print(-1)
else:
    print(min(DP[gi][gj]))
0