結果

問題 No.1572 XI
ユーザー mkawa2mkawa2
提出日時 2021-06-27 14:25:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,455 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 242,272 KB
最終ジャッジ日時 2024-06-25 11:39:02
合計ジャッジ時間 33,518 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,620 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 43 ms
54,448 KB
testcase_04 AC 610 ms
113,656 KB
testcase_05 AC 1,327 ms
166,952 KB
testcase_06 AC 1,171 ms
175,504 KB
testcase_07 AC 338 ms
82,976 KB
testcase_08 AC 441 ms
148,304 KB
testcase_09 AC 793 ms
121,336 KB
testcase_10 AC 644 ms
137,744 KB
testcase_11 AC 432 ms
87,068 KB
testcase_12 AC 697 ms
110,432 KB
testcase_13 AC 423 ms
87,688 KB
testcase_14 AC 639 ms
109,136 KB
testcase_15 AC 280 ms
85,064 KB
testcase_16 AC 576 ms
103,744 KB
testcase_17 AC 261 ms
81,740 KB
testcase_18 AC 150 ms
105,720 KB
testcase_19 AC 611 ms
154,284 KB
testcase_20 AC 543 ms
126,608 KB
testcase_21 AC 1,183 ms
178,800 KB
testcase_22 AC 1,326 ms
164,448 KB
testcase_23 AC 168 ms
79,564 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 44 ms
55,052 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 43 ms
54,852 KB
testcase_33 AC 43 ms
55,660 KB
testcase_34 AC 673 ms
202,852 KB
testcase_35 AC 573 ms
200,020 KB
testcase_36 AC 1,057 ms
212,180 KB
testcase_37 AC 1,937 ms
242,272 KB
testcase_38 AC 1,472 ms
226,520 KB
testcase_39 AC 1,289 ms
221,848 KB
testcase_40 AC 813 ms
201,728 KB
testcase_41 AC 1,475 ms
222,020 KB
testcase_42 AC 1,972 ms
240,792 KB
testcase_43 AC 1,236 ms
216,940 KB
testcase_44 AC 767 ms
216,540 KB
testcase_45 AC 1,640 ms
238,696 KB
testcase_46 AC 1,578 ms
237,992 KB
testcase_47 AC 288 ms
189,484 KB
testcase_48 AC 1,472 ms
232,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

from collections import deque

move = [[1, 5, 3, 4],
        [2, 1, 0, 1],
        [3, 4, 1, 5],
        [0, 3, 2, 3],
        [4, 0, 4, 2],
        [5, 2, 5, 0]]

h, w = LI()
si, sj = LI1()
gi, gj = LI1()
gij = gi*w+gj
aa = [a == "." for _ in range(h) for a in SI()]

dp = [[-1]*6 for _ in range(h*w)]
q = deque()
q.append((si*w+sj, 0))
dp[si*w+sj][0] = 0

def push(nij, dir):
    if nij==gij:
        print(dist+1)
        exit()
    ns = move[s][dir]
    if dp[nij][ns] == -1 and aa[nij]:
        q.append((nij, ns))
        dp[nij][ns] = dist+1

while q:
    ij, s = q.popleft()
    i, j = divmod(ij, w)
    dist = dp[ij][s]
    if i: push(ij-w, 1)
    if i+1 < h: push(ij+w, 3)
    if j: push(ij-1, 2)
    if j+1 < w: push(ij+1, 0)

print(-1)
0