結果

問題 No.323 yuki国
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-05-17 23:31:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,981 ms / 5,000 ms
コード長 1,068 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 431,804 KB
最終ジャッジ日時 2024-05-17 23:32:55
合計ジャッジ時間 65,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
57,444 KB
testcase_01 AC 65 ms
67,876 KB
testcase_02 AC 48 ms
56,844 KB
testcase_03 AC 198 ms
88,524 KB
testcase_04 AC 82 ms
77,772 KB
testcase_05 AC 110 ms
79,248 KB
testcase_06 AC 85 ms
77,380 KB
testcase_07 AC 45 ms
57,484 KB
testcase_08 AC 3,419 ms
424,864 KB
testcase_09 AC 3,393 ms
425,064 KB
testcase_10 AC 47 ms
55,696 KB
testcase_11 AC 60 ms
69,124 KB
testcase_12 AC 55 ms
63,984 KB
testcase_13 AC 3,552 ms
429,492 KB
testcase_14 AC 3,384 ms
429,952 KB
testcase_15 AC 2,576 ms
366,884 KB
testcase_16 AC 3,302 ms
424,860 KB
testcase_17 AC 3,750 ms
429,976 KB
testcase_18 AC 938 ms
234,776 KB
testcase_19 AC 2,097 ms
293,948 KB
testcase_20 AC 3,792 ms
429,984 KB
testcase_21 AC 3,886 ms
430,096 KB
testcase_22 AC 3,981 ms
431,804 KB
testcase_23 AC 3,841 ms
429,852 KB
testcase_24 AC 2,639 ms
364,684 KB
testcase_25 AC 2,701 ms
364,668 KB
testcase_26 AC 3,358 ms
427,780 KB
testcase_27 AC 3,293 ms
427,388 KB
testcase_28 AC 3,740 ms
429,420 KB
testcase_29 AC 3,750 ms
429,864 KB
testcase_30 AC 46 ms
55,808 KB
testcase_31 AC 75 ms
73,244 KB
testcase_32 AC 82 ms
77,428 KB
testcase_33 AC 65 ms
72,452 KB
testcase_34 AC 87 ms
78,444 KB
testcase_35 AC 48 ms
56,808 KB
testcase_36 AC 84 ms
77,456 KB
testcase_37 AC 85 ms
77,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys, math

input = sys.stdin.readline

H,W = map(int,input().split())
A,sx,sy = map(int,input().split())
B,gx,gy = map(int,input().split())
M = [list(input())[:-1] for _ in range(H)]
vis = defaultdict(lambda:False)
vis[(sx,sy,A)] = True
v = deque()
v.append((sx,sy,A))
def nb(x,y):
    tmp = []
    if x+1<H:
        tmp.append((x+1,y))
    if x-1>=0:
        tmp.append((x-1,y))
    if y+1<W:
        tmp.append((x,y+1))
    if y-1>=0:
        tmp.append((x,y-1))
    return tmp
while v:
    x,y,h = v.popleft()
    if h>1300:
        continue
    for ix,iy in nb(x,y):
        if M[ix][iy]=='.':
            if h==1:
                continue
            if vis[(ix,iy,h-1)]:
                continue
            vis[(ix,iy,h-1)]=True
            v.append((ix,iy,h-1))
        else:
            if vis[(ix,iy,h+1)]:
                continue
            vis[(ix,iy,h+1)]=True
            v.append((ix,iy,h+1))
if vis[(gx,gy,B)]:
    print('Yes')
else:
    print('No')
0