結果

問題 No.323 yuki国
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-05 10:31:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,896 ms / 5,000 ms
コード長 1,063 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 140,544 KB
最終ジャッジ日時 2024-10-15 14:47:43
合計ジャッジ時間 22,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,016 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 49 ms
55,296 KB
testcase_04 AC 46 ms
53,760 KB
testcase_05 AC 84 ms
76,160 KB
testcase_06 AC 70 ms
69,120 KB
testcase_07 AC 46 ms
54,144 KB
testcase_08 AC 1,699 ms
138,368 KB
testcase_09 AC 1,058 ms
128,512 KB
testcase_10 AC 46 ms
53,760 KB
testcase_11 AC 60 ms
63,104 KB
testcase_12 AC 59 ms
63,360 KB
testcase_13 AC 952 ms
127,616 KB
testcase_14 AC 1,734 ms
139,264 KB
testcase_15 AC 846 ms
125,568 KB
testcase_16 AC 1,698 ms
139,648 KB
testcase_17 AC 960 ms
127,232 KB
testcase_18 AC 115 ms
87,936 KB
testcase_19 AC 956 ms
114,560 KB
testcase_20 AC 191 ms
115,584 KB
testcase_21 AC 1,863 ms
140,544 KB
testcase_22 AC 415 ms
118,912 KB
testcase_23 AC 1,896 ms
139,392 KB
testcase_24 AC 232 ms
115,840 KB
testcase_25 AC 966 ms
126,848 KB
testcase_26 AC 233 ms
115,840 KB
testcase_27 AC 1,792 ms
139,136 KB
testcase_28 AC 1,046 ms
128,000 KB
testcase_29 AC 1,025 ms
128,000 KB
testcase_30 AC 46 ms
53,888 KB
testcase_31 AC 65 ms
66,432 KB
testcase_32 AC 71 ms
68,992 KB
testcase_33 AC 64 ms
66,048 KB
testcase_34 AC 79 ms
73,856 KB
testcase_35 AC 46 ms
53,376 KB
testcase_36 AC 75 ms
70,528 KB
testcase_37 AC 46 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.readline

def main():

    h, w = map(int, input().split())
    a, si, sj = map(int, input().split())
    b, ti, tj = map(int, input().split())

    M = [str(input().rstrip()) for i in range(h)]

    visit = [[False]*2001 for i in range(h*w)]
    from collections import deque
    q = deque([])
    s = si*w+sj
    t = ti*w+tj
    q.append((s, a))
    visit[s][a] = True
    while q:
        v, x = q.popleft()
        if v == t and x == b:
            break
        i, j = divmod(v, w)
        for di, dj in (-1, 0), (1, 0), (0, 1), (0, -1):
            ni, nj = i+di, j+dj
            if 0 <= ni < h and 0 <= nj < w:
                nv = ni*w+nj
                if M[ni][nj] == '*':
                    nx = x+1
                else:
                    nx = x-1
                if nx >= 1 and nx <= 2000 and not visit[nv][nx]:
                    q.append((nv, nx))
                    visit[nv][nx] = True
    if visit[t][b]:
        print('Yes')
    else:
        print('No')

if __name__ == '__main__':
    main()
0