結果

問題 No.323 yuki国
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-05-17 23:20:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,100 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 435,428 KB
最終ジャッジ日時 2024-05-17 23:21:39
合計ジャッジ時間 43,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,276 KB
testcase_01 AC 77 ms
77,468 KB
testcase_02 AC 109 ms
80,292 KB
testcase_03 AC 140 ms
88,884 KB
testcase_04 AC 93 ms
79,356 KB
testcase_05 AC 91 ms
79,348 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
56,720 KB
testcase_09 WA -
testcase_10 AC 40 ms
56,016 KB
testcase_11 AC 64 ms
74,340 KB
testcase_12 AC 64 ms
72,740 KB
testcase_13 WA -
testcase_14 AC 2,679 ms
429,976 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2,865 ms
429,780 KB
testcase_18 WA -
testcase_19 AC 1,791 ms
292,876 KB
testcase_20 AC 3,033 ms
429,884 KB
testcase_21 AC 2,953 ms
429,952 KB
testcase_22 AC 2,986 ms
431,860 KB
testcase_23 AC 2,904 ms
429,880 KB
testcase_24 AC 2,256 ms
367,176 KB
testcase_25 AC 2,076 ms
364,528 KB
testcase_26 WA -
testcase_27 AC 2,756 ms
435,428 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 44 ms
56,344 KB
testcase_31 AC 82 ms
77,500 KB
testcase_32 AC 84 ms
77,596 KB
testcase_33 AC 80 ms
77,876 KB
testcase_34 AC 83 ms
78,544 KB
testcase_35 WA -
testcase_36 AC 86 ms
77,520 KB
testcase_37 AC 76 ms
77,388 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())
sx -= 1
sy -= 1
B,gx,gy = map(int,input().split())
gx -= 1
gy -= 1
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