結果

問題 No.1572 XI
ユーザー mkawa2mkawa2
提出日時 2021-06-27 14:26:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,988 ms / 2,000 ms
コード長 1,469 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 242,268 KB
最終ジャッジ日時 2024-06-25 11:40:05
合計ジャッジ時間 33,534 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 44 ms
54,528 KB
testcase_02 AC 44 ms
54,400 KB
testcase_03 AC 43 ms
54,656 KB
testcase_04 AC 620 ms
113,544 KB
testcase_05 AC 1,325 ms
166,956 KB
testcase_06 AC 1,163 ms
175,900 KB
testcase_07 AC 339 ms
82,940 KB
testcase_08 AC 435 ms
149,064 KB
testcase_09 AC 785 ms
121,216 KB
testcase_10 AC 645 ms
137,744 KB
testcase_11 AC 430 ms
87,200 KB
testcase_12 AC 702 ms
110,092 KB
testcase_13 AC 430 ms
87,424 KB
testcase_14 AC 632 ms
109,184 KB
testcase_15 AC 281 ms
85,060 KB
testcase_16 AC 579 ms
103,544 KB
testcase_17 AC 273 ms
81,744 KB
testcase_18 AC 151 ms
105,752 KB
testcase_19 AC 612 ms
154,032 KB
testcase_20 AC 535 ms
126,344 KB
testcase_21 AC 1,196 ms
178,548 KB
testcase_22 AC 1,314 ms
164,584 KB
testcase_23 AC 171 ms
79,636 KB
testcase_24 AC 45 ms
54,272 KB
testcase_25 AC 43 ms
54,400 KB
testcase_26 AC 45 ms
54,144 KB
testcase_27 AC 44 ms
53,888 KB
testcase_28 AC 43 ms
54,272 KB
testcase_29 AC 43 ms
54,400 KB
testcase_30 AC 44 ms
54,528 KB
testcase_31 AC 43 ms
54,312 KB
testcase_32 AC 43 ms
54,016 KB
testcase_33 AC 42 ms
53,760 KB
testcase_34 AC 669 ms
202,728 KB
testcase_35 AC 571 ms
200,052 KB
testcase_36 AC 1,036 ms
211,800 KB
testcase_37 AC 1,910 ms
242,268 KB
testcase_38 AC 1,475 ms
226,692 KB
testcase_39 AC 1,288 ms
221,468 KB
testcase_40 AC 801 ms
201,848 KB
testcase_41 AC 1,474 ms
222,140 KB
testcase_42 AC 1,988 ms
241,048 KB
testcase_43 AC 1,237 ms
216,932 KB
testcase_44 AC 762 ms
216,644 KB
testcase_45 AC 1,661 ms
238,280 KB
testcase_46 AC 1,595 ms
237,768 KB
testcase_47 AC 287 ms
189,476 KB
testcase_48 AC 1,497 ms
233,156 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):
    ns = move[s][dir]
    if nij == gij and ns == 0:
        print(dist+1)
        exit()
    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