結果

問題 No.424 立体迷路
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-07-11 23:04:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,174 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 89,728 KB
最終ジャッジ日時 2024-07-02 03:18:20
合計ジャッジ時間 5,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
86,400 KB
testcase_01 AC 138 ms
86,656 KB
testcase_02 AC 137 ms
86,656 KB
testcase_03 AC 139 ms
86,656 KB
testcase_04 AC 140 ms
86,784 KB
testcase_05 AC 138 ms
87,040 KB
testcase_06 AC 140 ms
86,656 KB
testcase_07 AC 138 ms
86,656 KB
testcase_08 AC 139 ms
86,400 KB
testcase_09 AC 140 ms
86,656 KB
testcase_10 AC 139 ms
86,784 KB
testcase_11 AC 137 ms
86,784 KB
testcase_12 AC 136 ms
86,656 KB
testcase_13 AC 137 ms
86,656 KB
testcase_14 AC 137 ms
86,656 KB
testcase_15 AC 137 ms
86,656 KB
testcase_16 AC 140 ms
86,784 KB
testcase_17 AC 146 ms
87,424 KB
testcase_18 AC 144 ms
87,296 KB
testcase_19 AC 143 ms
86,784 KB
testcase_20 AC 144 ms
87,168 KB
testcase_21 AC 138 ms
86,528 KB
testcase_22 AC 141 ms
86,784 KB
testcase_23 AC 139 ms
87,040 KB
testcase_24 AC 167 ms
89,728 KB
testcase_25 AC 169 ms
89,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import bisect
import math
from decimal import Decimal
import heapq
import sys
sys.setrecursionlimit(10**9)

h,w = map(int,input().split())
sx,sy,ex,ey = map(int,input().split())
bb = [list(input()) for i in range(h)]
b = [[1 for i in range(w+1)] for j in range(h+1)]
for i in range(h):
    for j in range(w):
        b[i+1][j+1] = int(bb[i][j])

q = deque([])
d = [[1 for i in range(w+1)] for j in range(h+1)]
d[sx][sy] = 0
q.append((sx,sy))

lis = [[1,0],[-1,0],[0,1],[0,-1]]

while q:
    (x,y) = q.popleft()
    if x == ex and y == ey:
        print("YES")
        exit()
    
    # 1masu
    for xx,yy in lis:
        if 1 <= x + xx <= h and 1 <= y + yy <= w:
            if abs(b[x+xx][y+yy] - b[x][y]) <= 1:
                if d[x+xx][y+yy] == 1:
                    d[x+xx][y+yy] = 0
                    q.append((x+xx,y+yy))
    
    # 2masu
    for xx,yy in lis:
        if 1 <= x + 2*xx <= h and 1 <= y + 2*yy <= w:
            if b[x+xx][y+yy] <= b[x][y] and b[x+2*xx][y+2*yy] == b[x][y]:
                if d[x+2*xx][y+2*yy] == 1:
                    d[x+2*xx][y+2*yy] = 0
                    q.append((x+2*xx,y+2*yy))

print("NO")
0