結果

問題 No.367 ナイトの転身
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-02 10:37:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 1,892 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,884 KB
最終ジャッジ日時 2024-11-15 15:51:08
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,400 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 43 ms
54,272 KB
testcase_03 AC 44 ms
54,144 KB
testcase_04 AC 43 ms
54,400 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 50 ms
56,064 KB
testcase_07 AC 42 ms
54,016 KB
testcase_08 AC 43 ms
54,016 KB
testcase_09 AC 43 ms
54,016 KB
testcase_10 AC 268 ms
94,080 KB
testcase_11 AC 428 ms
99,884 KB
testcase_12 AC 284 ms
86,724 KB
testcase_13 AC 249 ms
85,396 KB
testcase_14 AC 256 ms
85,504 KB
testcase_15 AC 115 ms
77,156 KB
testcase_16 AC 255 ms
84,232 KB
testcase_17 AC 129 ms
77,368 KB
testcase_18 AC 137 ms
78,072 KB
testcase_19 AC 158 ms
79,372 KB
testcase_20 AC 129 ms
77,992 KB
testcase_21 AC 157 ms
78,972 KB
testcase_22 AC 54 ms
62,848 KB
testcase_23 AC 101 ms
76,844 KB
testcase_24 AC 108 ms
76,912 KB
testcase_25 AC 96 ms
76,800 KB
testcase_26 AC 67 ms
67,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
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':
            s = (i,j)
        if S[i][j] == 'G':
            g = (i,j)
            

from collections import deque
v = deque()

dist = [[[-1]*W for _ in range(H)] for j in range(2)]

v.append((0,s[0],s[1]))
dist[0][s[0]][s[1]]=0


def nb1(i,j):
    dx = [1,1,2,2,-1,-1,-2,-2]
    dy = [2,-2,1,-1,2,-2,1,-1]
    tmp = []
    for t in range(8):
        tx = dx[t]+i
        ty = dy[t]+j
        if (0<=tx<H)&(0<=ty<W):
            tmp.append((tx,ty))
    return tmp
 
 
def nb2(i,j):
    dx = [1,1,-1,-1]
    dy = [1,-1,1,-1]
    tmp = []
    for t in range(4):
        tx = dx[t]+i
        ty = dy[t]+j
        if (0<=tx<H)&(0<=ty<W):
            tmp.append((tx,ty))
    return tmp   


while v:
    
    ic,ix,iy = v.popleft()
    td = dist[ic][ix][iy]
    
    if ic==0:
        for jx,jy in nb1(ix,iy):
            
            if S[jx][jy]=='R':
                
                if dist[1][jx][jy]==-1:
                    dist[1][jx][jy] = td+1
                    v.append((1,jx,jy))
            else:
                if dist[0][jx][jy]==-1:
                    dist[0][jx][jy] = td+1
                    v.append((0,jx,jy))        
    else:
        
        for jx,jy in nb2(ix,iy):
            
            if S[jx][jy]=='R':
                
                if dist[0][jx][jy]==-1:
                    dist[0][jx][jy] = td+1
                    v.append((0,jx,jy))
            else:
                if dist[1][jx][jy]==-1:
                    dist[1][jx][jy] = td+1
                    v.append((1,jx,jy))            
                
a = dist[0][g[0]][g[1]]
b = dist[1][g[0]][g[1]]

if (a==-1)&(b==-1):
    print(-1)
elif (a!=-1)&(b!=-1):
    print(min(a,b))
else:
    print(max(a,b))
0