結果

問題 No.367 ナイトの転身
ユーザー roiti46roiti46
提出日時 2016-04-30 00:37:39
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,055 ms / 2,000 ms
コード長 1,324 bytes
コンパイル時間 1,165 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 111,240 KB
最終ジャッジ日時 2024-10-04 23:38:17
合計ジャッジ時間 7,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
75,168 KB
testcase_01 AC 66 ms
75,552 KB
testcase_02 AC 67 ms
75,428 KB
testcase_03 AC 68 ms
75,164 KB
testcase_04 AC 66 ms
75,556 KB
testcase_05 AC 64 ms
75,288 KB
testcase_06 AC 70 ms
75,936 KB
testcase_07 AC 67 ms
75,272 KB
testcase_08 AC 67 ms
75,420 KB
testcase_09 AC 66 ms
75,176 KB
testcase_10 AC 640 ms
104,344 KB
testcase_11 AC 1,055 ms
111,240 KB
testcase_12 AC 186 ms
88,900 KB
testcase_13 AC 205 ms
88,456 KB
testcase_14 AC 369 ms
89,612 KB
testcase_15 AC 116 ms
79,664 KB
testcase_16 AC 370 ms
88,928 KB
testcase_17 AC 166 ms
80,184 KB
testcase_18 AC 173 ms
80,516 KB
testcase_19 AC 171 ms
81,916 KB
testcase_20 AC 119 ms
80,536 KB
testcase_21 AC 163 ms
81,416 KB
testcase_22 AC 69 ms
75,580 KB
testcase_23 AC 91 ms
78,488 KB
testcase_24 AC 113 ms
79,488 KB
testcase_25 AC 115 ms
78,856 KB
testcase_26 AC 92 ms
78,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
H,W = map(int,raw_input().split())
s = [raw_input() for i in range(H)]
sx,sy,gx,gy = 0,0,0,0
for i in range(H):
    for j in range(W):
        if s[i][j] == 'S':
            sy = i
            sx = j
        elif s[i][j] == 'G':
            gy = i
            gx = j
used = [[[False for k in xrange(2)]for j in xrange(W)] for i in xrange(H)]
find = False
adx = [2,-2,2,-2,1,-1,1,-1]
ady = [1,1,-1,-1,2,2,-2,-2]
bdx = [1,1,-1,-1]
bdy = [1,-1,1,-1]
q = [[0, sy, sx, True]]
used[sy][sx][0] = True
while q and (not find):
    ele = heapq.heappop(q)
    c = ele[0]
    y = ele[1]
    x = ele[2]
    isKnight =  ele[3]
    cdy = bdy
    cdx = bdx
    if isKnight:
        cdy = ady
        cdx = adx
    for i in range(len(cdx)):
        ny = cdy[i] + y
        nx = cdx[i] + x
        mode = isKnight
        if ny < 0 or nx < 0 or ny >= H or nx >= W:continue
        if isKnight:
            if used[ny][nx][0]:continue
        else:
            if used[ny][nx][1]:continue
        if ny == gy and nx == gx:
            print(c + 1)
            find = True
            break
        if s[ny][nx] == 'R':
            mode = (not mode)
        if isKnight:
            used[ny][nx][0] = True
        else:
            used[ny][nx][1] = True
        heapq.heappush(q, [c + 1, ny, nx, mode])
if not find:
    print (-1)
0