結果

問題 No.323 yuki国
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-16 02:12:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 529 ms / 5,000 ms
コード長 845 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 120,448 KB
最終ジャッジ日時 2024-06-29 03:03:17
合計ジャッジ時間 10,901 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
83,072 KB
testcase_01 AC 81 ms
92,800 KB
testcase_02 AC 63 ms
82,688 KB
testcase_03 AC 103 ms
101,504 KB
testcase_04 AC 77 ms
94,208 KB
testcase_05 AC 86 ms
96,768 KB
testcase_06 AC 76 ms
93,952 KB
testcase_07 AC 67 ms
82,944 KB
testcase_08 AC 393 ms
120,192 KB
testcase_09 AC 399 ms
119,936 KB
testcase_10 AC 61 ms
82,944 KB
testcase_11 AC 78 ms
92,160 KB
testcase_12 AC 75 ms
92,672 KB
testcase_13 AC 409 ms
120,448 KB
testcase_14 AC 409 ms
120,064 KB
testcase_15 AC 310 ms
114,568 KB
testcase_16 AC 407 ms
119,808 KB
testcase_17 AC 433 ms
119,936 KB
testcase_18 AC 190 ms
108,288 KB
testcase_19 AC 311 ms
114,048 KB
testcase_20 AC 505 ms
120,064 KB
testcase_21 AC 529 ms
120,064 KB
testcase_22 AC 527 ms
120,064 KB
testcase_23 AC 502 ms
120,244 KB
testcase_24 AC 333 ms
114,564 KB
testcase_25 AC 311 ms
114,516 KB
testcase_26 AC 432 ms
120,192 KB
testcase_27 AC 460 ms
119,936 KB
testcase_28 AC 441 ms
120,192 KB
testcase_29 AC 435 ms
120,320 KB
testcase_30 AC 62 ms
82,944 KB
testcase_31 AC 83 ms
93,568 KB
testcase_32 AC 84 ms
95,872 KB
testcase_33 AC 75 ms
92,800 KB
testcase_34 AC 88 ms
96,000 KB
testcase_35 AC 61 ms
83,072 KB
testcase_36 AC 89 ms
95,744 KB
testcase_37 AC 79 ms
94,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
H,W=map(int,input().split())
A,sx,sy=map(int,input().split())
B,gx,gy=map(int,input().split())
g=['']*H
for i in range(H):
    g[i]=input()
dist=[-1]*50*50*1500
dist[sx*50*1500+sy*1500+A]=0
que=deque([sx*50*1500+sy*1500+A])
dx=[1,0,-1,0]
dy=[0,1,0,-1]
while que:
    now=que.popleft()
    sz=now%1500
    now//=1500
    y=now%50
    now//=50
    x=now
    for i in range(4):
        nx=x+dx[i]
        ny=y+dy[i]
        if nx<0 or ny<0 or nx>=H or ny>=W:
            continue
        nt=sz
        if g[nx][ny]=='*':
            nt+=1
        else:
            nt-=1
        if nt>=1500 or nt<1:
            continue
        to=nx*50*1500+ny*1500+nt
        if dist[to]!=-1:
            continue
        dist[to]=0
        que.append(to)
if dist[gx*50*1500+gy*1500+B]==0:
    print('Yes')
else:
    print('No')



0