結果

問題 No.367 ナイトの転身
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-02 10:36:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,832 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-11-15 15:51:03
合計ジャッジ時間 9,089 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,136 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 28 ms
11,008 KB
testcase_03 AC 29 ms
11,264 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 28 ms
11,008 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 28 ms
11,008 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 28 ms
11,008 KB
testcase_10 AC 1,287 ms
17,792 KB
testcase_11 TLE -
testcase_12 AC 741 ms
13,568 KB
testcase_13 AC 794 ms
13,312 KB
testcase_14 AC 726 ms
13,440 KB
testcase_15 AC 51 ms
11,264 KB
testcase_16 AC 631 ms
12,928 KB
testcase_17 AC 101 ms
11,008 KB
testcase_18 AC 130 ms
11,264 KB
testcase_19 AC 212 ms
11,648 KB
testcase_20 AC 123 ms
11,264 KB
testcase_21 AC 210 ms
11,648 KB
testcase_22 AC 29 ms
11,264 KB
testcase_23 AC 37 ms
11,136 KB
testcase_24 AC 41 ms
11,136 KB
testcase_25 AC 36 ms
11,136 KB
testcase_26 AC 31 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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