結果

問題 No.323 yuki国
ユーザー rlangevinrlangevin
提出日時 2023-09-29 12:07:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,850 ms / 5,000 ms
コード長 826 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 387,040 KB
最終ジャッジ日時 2024-07-22 06:29:24
合計ジャッジ時間 36,748 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 AC 59 ms
59,648 KB
testcase_04 AC 51 ms
54,272 KB
testcase_05 AC 83 ms
77,992 KB
testcase_06 AC 59 ms
68,864 KB
testcase_07 AC 43 ms
53,504 KB
testcase_08 AC 2,653 ms
386,748 KB
testcase_09 AC 2,443 ms
337,404 KB
testcase_10 AC 42 ms
53,632 KB
testcase_11 AC 64 ms
66,944 KB
testcase_12 AC 62 ms
67,072 KB
testcase_13 AC 2,091 ms
330,060 KB
testcase_14 AC 2,475 ms
386,780 KB
testcase_15 AC 1,678 ms
290,584 KB
testcase_16 AC 2,374 ms
386,960 KB
testcase_17 AC 2,203 ms
322,512 KB
testcase_18 AC 89 ms
78,080 KB
testcase_19 AC 1,416 ms
289,740 KB
testcase_20 AC 108 ms
81,616 KB
testcase_21 AC 2,850 ms
386,952 KB
testcase_22 AC 637 ms
151,072 KB
testcase_23 AC 2,784 ms
386,900 KB
testcase_24 AC 222 ms
97,492 KB
testcase_25 AC 1,947 ms
322,648 KB
testcase_26 AC 211 ms
94,328 KB
testcase_27 AC 2,440 ms
387,040 KB
testcase_28 AC 2,429 ms
330,100 KB
testcase_29 AC 2,372 ms
333,688 KB
testcase_30 AC 43 ms
53,632 KB
testcase_31 AC 72 ms
70,912 KB
testcase_32 AC 68 ms
71,296 KB
testcase_33 AC 62 ms
68,096 KB
testcase_34 AC 80 ms
77,452 KB
testcase_35 AC 43 ms
53,760 KB
testcase_36 AC 67 ms
71,424 KB
testcase_37 AC 44 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

H, W = map(int, input().split())
A, sx, sy = map(int, input().split())
B, gx, gy = map(int, input().split())
G = []
for i in range(H):
    G.append(list(input()))

Q = deque()
Q.append((sx, sy, A))
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
M = 1200
S = set()
S.add((sx, sy, A))
while Q:
    px, py, c = Q.popleft()
    for k in range(4):
        x = px + dx[k]
        y = py + dy[k]
        if x < 0 or x > H - 1 or y < 0 or y > W - 1:
            continue
        if G[x][y] == "*":
            nc = c + 1  
        else:
            nc = c - 1
        if nc <= 0 or nc >= M:
            continue
        if (x, y, nc) in S:
            continue
        S.add((x, y, nc))
        Q.append((x, y, nc))
        if B == nc and x == gx and y == gy:
            print("Yes")
            exit()

print("No")
0