結果

問題 No.323 yuki国
ユーザー lloyzlloyz
提出日時 2023-10-18 00:11:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,335 ms / 5,000 ms
コード長 927 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 141,288 KB
最終ジャッジ日時 2024-09-17 21:15:58
合計ジャッジ時間 22,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,144 KB
testcase_01 AC 54 ms
65,316 KB
testcase_02 AC 43 ms
60,332 KB
testcase_03 AC 92 ms
77,704 KB
testcase_04 AC 62 ms
68,092 KB
testcase_05 AC 72 ms
73,568 KB
testcase_06 AC 62 ms
67,400 KB
testcase_07 AC 46 ms
59,784 KB
testcase_08 AC 1,068 ms
137,392 KB
testcase_09 AC 1,100 ms
137,464 KB
testcase_10 AC 43 ms
59,656 KB
testcase_11 AC 53 ms
64,468 KB
testcase_12 AC 53 ms
64,592 KB
testcase_13 AC 1,125 ms
139,200 KB
testcase_14 AC 1,071 ms
138,932 KB
testcase_15 AC 657 ms
127,536 KB
testcase_16 AC 1,062 ms
138,852 KB
testcase_17 AC 1,179 ms
139,392 KB
testcase_18 AC 319 ms
93,760 KB
testcase_19 AC 668 ms
113,952 KB
testcase_20 AC 1,335 ms
139,660 KB
testcase_21 AC 1,325 ms
141,288 KB
testcase_22 AC 1,322 ms
140,688 KB
testcase_23 AC 1,302 ms
139,636 KB
testcase_24 AC 693 ms
127,488 KB
testcase_25 AC 654 ms
125,988 KB
testcase_26 AC 1,161 ms
139,228 KB
testcase_27 AC 1,200 ms
139,376 KB
testcase_28 AC 1,228 ms
139,156 KB
testcase_29 AC 1,156 ms
139,228 KB
testcase_30 AC 43 ms
60,192 KB
testcase_31 AC 56 ms
66,484 KB
testcase_32 AC 66 ms
71,704 KB
testcase_33 AC 55 ms
66,336 KB
testcase_34 AC 72 ms
72,968 KB
testcase_35 AC 42 ms
58,872 KB
testcase_36 AC 64 ms
69,464 KB
testcase_37 AC 64 ms
68,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int, input().split())
a, si, sj = map(int, input().split())
b, ti, tj = map(int, input().split())
S = [list(input()) for _ in range(h)]

visited = [[[False for _ in range(2001)] for _ in range(w)] for _ in range(h)]
Directions = [(1, 0), (0, 1), (-1, 0), (0, -1)]
Que = deque([(a, si, sj)])
visited[si][sj][a] = True
while Que:
    cs, ci, cj = Que.popleft()
    for di, dj in Directions:
        ni, nj = ci + di, cj + dj
        if 0 <= ni < h and 0 <= nj < w:
            if S[ni][nj] == '.':
                ns = cs - 1
                if ns == 0:
                    continue
            else:
                ns = cs + 1
                if ns > 2000:
                    continue
            if visited[ni][nj][ns]:
                continue
            visited[ni][nj][ns] = True
            Que.append((ns, ni, nj))
if visited[ti][tj][b]:
    print("Yes")
else:
    print("No")
0