結果

問題 No.323 yuki国
ユーザー maspymaspy
提出日時 2020-03-21 12:19:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 981 ms / 5,000 ms
コード長 996 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 257,148 KB
最終ジャッジ日時 2024-06-01 08:41:28
合計ジャッジ時間 15,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,352 KB
testcase_01 AC 56 ms
61,696 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 74 ms
76,672 KB
testcase_04 AC 54 ms
63,360 KB
testcase_05 AC 62 ms
67,712 KB
testcase_06 AC 53 ms
63,744 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 736 ms
250,424 KB
testcase_09 AC 711 ms
228,848 KB
testcase_10 AC 39 ms
53,684 KB
testcase_11 AC 50 ms
62,184 KB
testcase_12 AC 49 ms
61,660 KB
testcase_13 AC 707 ms
231,112 KB
testcase_14 AC 699 ms
220,028 KB
testcase_15 AC 500 ms
199,204 KB
testcase_16 AC 684 ms
228,548 KB
testcase_17 AC 809 ms
257,148 KB
testcase_18 AC 329 ms
155,220 KB
testcase_19 AC 451 ms
237,580 KB
testcase_20 AC 981 ms
254,984 KB
testcase_21 AC 917 ms
257,084 KB
testcase_22 AC 951 ms
247,528 KB
testcase_23 AC 968 ms
247,692 KB
testcase_24 AC 487 ms
195,656 KB
testcase_25 AC 509 ms
206,928 KB
testcase_26 AC 721 ms
217,496 KB
testcase_27 AC 750 ms
240,360 KB
testcase_28 AC 742 ms
249,212 KB
testcase_29 AC 729 ms
230,612 KB
testcase_30 AC 39 ms
52,832 KB
testcase_31 AC 53 ms
64,592 KB
testcase_32 AC 56 ms
65,524 KB
testcase_33 AC 51 ms
62,964 KB
testcase_34 AC 74 ms
72,412 KB
testcase_35 AC 41 ms
52,096 KB
testcase_36 AC 58 ms
65,408 KB
testcase_37 AC 55 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

H, W = map(int, readline().split())
A, Sx, Sy = map(int, readline().split())
B, Gx, Gy = map(int, readline().split())

M = ''.join(read().decode().split())

S = Sx * W + Sy
G = Gx * W + Gy
N = H * W

start = A * N + S
goal = B * N + G

stack = [start]
visited = set([start])
while stack:
    v = stack.pop()
    size, xy = divmod(v, N)
    x, y = divmod(xy, W)
    for dx, dy in ((1, 0), (0, 1), (-1, 0), (0, -1)):
        x1 = x + dx
        y1 = y + dy
        if not ((0 <= x1 < H) and (0 <= y1 < W)):
            continue
        xy1 = x1 * W + y1
        size1 = size - 1 + 2 * (M[xy1] == '*')
        if not size1:
            continue
        if size1 > 1500:
            continue
        v1 = size1 * N + xy1
        if v1 in visited:
            continue
        visited.add(v1)
        stack.append(v1)


print('Yes' if goal in visited else 'No')
0