結果

問題 No.367 ナイトの転身
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-07 17:56:35
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 76,968 KB
実行使用メモリ 104,488 KB
最終ジャッジ日時 2024-12-23 14:47:40
合計ジャッジ時間 4,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
75,912 KB
testcase_01 AC 66 ms
75,528 KB
testcase_02 AC 67 ms
75,692 KB
testcase_03 AC 71 ms
75,536 KB
testcase_04 AC 68 ms
75,548 KB
testcase_05 AC 65 ms
75,688 KB
testcase_06 AC 72 ms
75,424 KB
testcase_07 AC 77 ms
75,712 KB
testcase_08 AC 66 ms
75,452 KB
testcase_09 AC 68 ms
75,556 KB
testcase_10 AC 224 ms
100,908 KB
testcase_11 AC 301 ms
104,488 KB
testcase_12 AC 118 ms
86,920 KB
testcase_13 AC 120 ms
87,072 KB
testcase_14 AC 157 ms
86,604 KB
testcase_15 AC 95 ms
78,268 KB
testcase_16 AC 184 ms
85,644 KB
testcase_17 AC 108 ms
78,904 KB
testcase_18 AC 102 ms
78,356 KB
testcase_19 AC 99 ms
78,604 KB
testcase_20 AC 89 ms
78,620 KB
testcase_21 AC 105 ms
79,292 KB
testcase_22 AC 73 ms
76,716 KB
testcase_23 AC 82 ms
77,852 KB
testcase_24 AC 89 ms
78,356 KB
testcase_25 AC 89 ms
77,880 KB
testcase_26 AC 80 ms
77,728 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