結果

問題 No.367 ナイトの転身
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-07 17:55:49
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 950 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 46,592 KB
最終ジャッジ日時 2024-10-05 10:21:14
合計ジャッジ時間 6,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 11 ms
6,820 KB
testcase_02 AC 11 ms
6,820 KB
testcase_03 AC 10 ms
6,816 KB
testcase_04 AC 10 ms
6,816 KB
testcase_05 AC 9 ms
6,820 KB
testcase_06 AC 10 ms
6,820 KB
testcase_07 AC 9 ms
6,816 KB
testcase_08 AC 9 ms
6,816 KB
testcase_09 AC 9 ms
6,816 KB
testcase_10 AC 1,447 ms
41,472 KB
testcase_11 TLE -
testcase_12 AC 195 ms
19,584 KB
testcase_13 AC 237 ms
19,712 KB
testcase_14 AC 541 ms
19,072 KB
testcase_15 AC 22 ms
6,816 KB
testcase_16 AC 534 ms
17,664 KB
testcase_17 AC 83 ms
7,552 KB
testcase_18 AC 124 ms
8,320 KB
testcase_19 AC 121 ms
9,984 KB
testcase_20 AC 37 ms
8,064 KB
testcase_21 AC 122 ms
9,728 KB
testcase_22 AC 10 ms
6,820 KB
testcase_23 AC 13 ms
6,816 KB
testcase_24 AC 19 ms
6,820 KB
testcase_25 AC 17 ms
6,816 KB
testcase_26 AC 12 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,raw_input().split())
B=[raw_input() for i in range(H)]
arrived=[[[-1 for i in range(2)] for j in range(W)] for k in range(H)]
state=[]
for i in range(H):
    for j in range(W):
        if B[i][j]=='S':
            state.append((0,0,i,j))
            arrived[i][j][0]=0
    
moves=[[(1,2),(2,1),(2,-1),(1,-2),(-1,-2),(-2,-1),(-2,1),(-1,2)],[(1,1),(-1,1),(-1,-1),(1,-1)]]

#cnt=0
while len(state)!=0:
    #print "now",cnt,":",len(state)
    nextState=[]
    for (p,s,x,y) in state:
        if B[x][y]=='G':
            print p
            exit()
        for (dx,dy) in moves[s]:
            nx,ny=x+dx,y+dy
            if nx<0 or ny <0 or nx>=H or ny >= W:
                continue
            ns=s
            if B[nx][ny]=='R':
                ns=1-s
            if arrived[nx][ny][ns]!=-1:
                continue
            arrived[nx][ny][ns]=p+1
            nextState.append((p+1,ns,nx,ny))
    state=nextState
#    cnt+=1
print -1
0