結果

問題 No.367 ナイトの転身
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-07 17:56:35
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 103,552 KB
最終ジャッジ日時 2024-06-06 03:39:54
合計ジャッジ時間 4,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
75,520 KB
testcase_01 AC 78 ms
75,420 KB
testcase_02 AC 77 ms
75,136 KB
testcase_03 AC 75 ms
75,392 KB
testcase_04 AC 77 ms
75,424 KB
testcase_05 AC 78 ms
75,520 KB
testcase_06 AC 80 ms
75,520 KB
testcase_07 AC 76 ms
75,520 KB
testcase_08 AC 75 ms
75,392 KB
testcase_09 AC 76 ms
75,264 KB
testcase_10 AC 251 ms
100,992 KB
testcase_11 AC 335 ms
103,552 KB
testcase_12 AC 131 ms
86,912 KB
testcase_13 AC 138 ms
86,528 KB
testcase_14 AC 172 ms
87,116 KB
testcase_15 AC 104 ms
78,336 KB
testcase_16 AC 182 ms
85,520 KB
testcase_17 AC 126 ms
79,360 KB
testcase_18 AC 119 ms
78,592 KB
testcase_19 AC 110 ms
78,976 KB
testcase_20 AC 104 ms
78,592 KB
testcase_21 AC 120 ms
79,036 KB
testcase_22 AC 82 ms
77,056 KB
testcase_23 AC 90 ms
78,084 KB
testcase_24 AC 98 ms
78,080 KB
testcase_25 AC 98 ms
78,336 KB
testcase_26 AC 92 ms
77,312 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