結果

問題 No.424 立体迷路
ユーザー ynyn
提出日時 2016-10-25 23:56:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,369 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,968 KB
最終ジャッジ日時 2024-07-05 07:11:33
合計ジャッジ時間 1,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 33 ms
52,096 KB
testcase_04 AC 34 ms
52,608 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 34 ms
52,224 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 33 ms
52,352 KB
testcase_11 AC 33 ms
51,968 KB
testcase_12 AC 34 ms
52,608 KB
testcase_13 AC 33 ms
51,840 KB
testcase_14 AC 33 ms
52,096 KB
testcase_15 AC 33 ms
52,224 KB
testcase_16 AC 34 ms
52,096 KB
testcase_17 AC 34 ms
52,224 KB
testcase_18 AC 33 ms
52,224 KB
testcase_19 AC 34 ms
52,608 KB
testcase_20 AC 34 ms
52,608 KB
testcase_21 AC 34 ms
52,224 KB
testcase_22 AC 35 ms
52,224 KB
testcase_23 AC 32 ms
52,224 KB
testcase_24 AC 61 ms
67,840 KB
testcase_25 AC 61 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int,input().split())
sx, sy, gx, gy = map(int,input().split())
sx -= 1
sy -= 1
gx -= 1
gy -= 1
b = [list(input()) for j in range(h)]

dx = [ 1, 0,-1, 0]
dy = [ 0, 1, 0,-1]
ddx = [2, 0,-2, 0]
ddy = [0, 2, 0,-2]

visited = [[False] * w for j in range(h)]
visited[sx][sy] = True
qx = []
qy = []
qx.append(sx)
qy.append(sy)

while len(qx) != 0:
    curx = qx.pop(0)
    cury = qy.pop(0)
    cur = int(b[curx][cury])

    for i in range(4):
        nextx = curx + dx[i]
        nexty = cury + dy[i]
        if 0 <= nextx < h and 0 <= nexty < w:
            pass
        else:
            continue

        if abs(cur - int(b[nextx][nexty])) <= 1:
            if not visited[nextx][nexty]:
                visited[nextx][nexty] = True
                qx.append(nextx)
                qy.append(nexty)

    for i in range(4):
        nextx = curx + ddx[i]
        nexty = cury + ddy[i]
        if 0 <= nextx < h and 0 <= nexty < w:
            pass
        else:
            continue

        if cur != int(b[nextx][nexty]):
            continue

        valleyx = curx + dx[i]
        valleyy = cury + dy[i]
        if int(b[valleyx][valleyy]) < cur:
            if not visited[nextx][nexty]:
                visited[nextx][nexty] = True
                qx.append(nextx)
                qy.append(nexty)

if visited[gx][gy]:
    print("YES")
else:
    print("NO")
0