結果

問題 No.323 yuki国
ユーザー H3PO4H3PO4
提出日時 2020-08-26 09:49:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,536 ms / 5,000 ms
コード長 1,077 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 473,044 KB
最終ジャッジ日時 2024-11-07 00:29:27
合計ジャッジ時間 39,676 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
68,096 KB
testcase_01 AC 61 ms
63,744 KB
testcase_02 AC 78 ms
71,040 KB
testcase_03 AC 109 ms
82,560 KB
testcase_04 AC 71 ms
68,352 KB
testcase_05 AC 103 ms
79,488 KB
testcase_06 AC 79 ms
70,912 KB
testcase_07 AC 96 ms
78,336 KB
testcase_08 AC 1,988 ms
431,972 KB
testcase_09 AC 1,833 ms
431,416 KB
testcase_10 AC 47 ms
59,548 KB
testcase_11 AC 57 ms
64,108 KB
testcase_12 AC 57 ms
64,036 KB
testcase_13 AC 1,909 ms
453,228 KB
testcase_14 AC 2,536 ms
431,404 KB
testcase_15 AC 2,041 ms
431,680 KB
testcase_16 AC 2,043 ms
431,656 KB
testcase_17 AC 1,587 ms
443,064 KB
testcase_18 AC 500 ms
188,452 KB
testcase_19 AC 1,183 ms
301,132 KB
testcase_20 AC 1,828 ms
464,772 KB
testcase_21 AC 2,467 ms
471,836 KB
testcase_22 AC 1,727 ms
464,380 KB
testcase_23 AC 2,378 ms
473,044 KB
testcase_24 AC 1,927 ms
431,580 KB
testcase_25 AC 1,965 ms
431,628 KB
testcase_26 AC 2,099 ms
431,392 KB
testcase_27 AC 1,949 ms
431,448 KB
testcase_28 AC 1,956 ms
431,764 KB
testcase_29 AC 1,967 ms
431,484 KB
testcase_30 AC 70 ms
70,912 KB
testcase_31 AC 73 ms
70,640 KB
testcase_32 AC 74 ms
73,016 KB
testcase_33 AC 67 ms
68,928 KB
testcase_34 AC 87 ms
78,484 KB
testcase_35 AC 65 ms
68,296 KB
testcase_36 AC 89 ms
77,724 KB
testcase_37 AC 65 ms
69,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
from collections import deque

H, W = map(int, input().split())
A, Si, Sj = map(int, input().split())
B, Gi, Gj = map(int, input().split())
M = [input() for _ in range(H)]


def point2int(h, w, x):
    """
    H*W*1200の空間で探索
    座標(h,w,x) →整数 1200*W*h+1200*w+x にエンコード
    """
    return 1200 * W * h + 1200 * w + x


Graph = [[] for _ in range(H * W * 1200)]
for h, w in itertools.product(range(H), range(W)):
    n = (1 if M[h][w] == '*' else -1)
    # 入る辺
    for dh, dw in [(1, 0), (0, 1), (-1, 0), (0, -1)]:
        if 0 <= h - dh < H and 0 <= w - dw < W:
            for x in range(1200):
                if 1 <= x - n < 1200:
                    Graph[point2int(h - dh, w - dw, x - n)].append(point2int(h, w, x))

S = point2int(Si, Sj, A)
G = point2int(Gi, Gj, B)

# dfs
d = deque([S])
visited = [False] * (H * W * 1200)
while d:
    v = d.pop()
    if v == G:
        print('Yes')
        break
    visited[v] = True
    for x in Graph[v]:
        if not visited[x]:
            d.append(x)
else:
    print('No')
0