結果

問題 No.1572 XI
ユーザー mkawa2mkawa2
提出日時 2021-06-27 14:30:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,764 ms / 2,000 ms
コード長 1,469 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 171,524 KB
最終ジャッジ日時 2024-06-25 11:41:12
合計ジャッジ時間 29,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,272 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 44 ms
54,400 KB
testcase_03 AC 43 ms
54,272 KB
testcase_04 AC 571 ms
99,584 KB
testcase_05 AC 1,219 ms
131,616 KB
testcase_06 AC 1,056 ms
132,280 KB
testcase_07 AC 336 ms
81,924 KB
testcase_08 AC 359 ms
119,084 KB
testcase_09 AC 736 ms
102,828 KB
testcase_10 AC 571 ms
107,952 KB
testcase_11 AC 419 ms
84,940 KB
testcase_12 AC 650 ms
97,328 KB
testcase_13 AC 416 ms
84,736 KB
testcase_14 AC 599 ms
96,768 KB
testcase_15 AC 273 ms
82,588 KB
testcase_16 AC 534 ms
92,764 KB
testcase_17 AC 254 ms
80,416 KB
testcase_18 AC 116 ms
101,824 KB
testcase_19 AC 513 ms
120,244 KB
testcase_20 AC 481 ms
100,652 KB
testcase_21 AC 1,054 ms
134,328 KB
testcase_22 AC 1,207 ms
130,528 KB
testcase_23 AC 168 ms
78,732 KB
testcase_24 AC 42 ms
54,400 KB
testcase_25 AC 42 ms
54,144 KB
testcase_26 AC 43 ms
54,912 KB
testcase_27 AC 43 ms
54,272 KB
testcase_28 AC 43 ms
54,272 KB
testcase_29 AC 43 ms
54,144 KB
testcase_30 AC 42 ms
54,528 KB
testcase_31 AC 43 ms
54,272 KB
testcase_32 AC 42 ms
54,272 KB
testcase_33 AC 43 ms
54,272 KB
testcase_34 AC 534 ms
168,116 KB
testcase_35 AC 437 ms
167,532 KB
testcase_36 AC 883 ms
169,036 KB
testcase_37 AC 1,697 ms
171,524 KB
testcase_38 AC 1,308 ms
169,536 KB
testcase_39 AC 1,067 ms
169,952 KB
testcase_40 AC 649 ms
167,096 KB
testcase_41 AC 1,253 ms
168,508 KB
testcase_42 AC 1,764 ms
171,324 KB
testcase_43 AC 1,107 ms
168,708 KB
testcase_44 AC 609 ms
142,612 KB
testcase_45 AC 1,442 ms
163,900 KB
testcase_46 AC 1,441 ms
162,760 KB
testcase_47 AC 159 ms
136,672 KB
testcase_48 AC 1,297 ms
158,256 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]*h*w for _ in range(6)]
q = deque()
q.append((si*w+sj, 0))
dp[0][si*w+sj] = 0

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

while q:
    ij, s = q.popleft()
    i, j = divmod(ij, w)
    dist = dp[s][ij]
    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