結果

問題 No.323 yuki国
ユーザー roarisroaris
提出日時 2019-12-08 20:14:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,313 ms / 5,000 ms
コード長 857 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 218,236 KB
最終ジャッジ日時 2024-06-10 03:20:26
合計ジャッジ時間 65,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,872 KB
testcase_01 AC 51 ms
64,352 KB
testcase_02 AC 40 ms
54,772 KB
testcase_03 AC 92 ms
79,328 KB
testcase_04 AC 53 ms
73,604 KB
testcase_05 AC 71 ms
76,568 KB
testcase_06 AC 53 ms
73,308 KB
testcase_07 AC 38 ms
55,812 KB
testcase_08 AC 4,012 ms
210,896 KB
testcase_09 AC 3,865 ms
211,204 KB
testcase_10 AC 40 ms
55,320 KB
testcase_11 AC 46 ms
64,644 KB
testcase_12 AC 43 ms
62,812 KB
testcase_13 AC 3,892 ms
211,876 KB
testcase_14 AC 4,074 ms
211,884 KB
testcase_15 AC 1,145 ms
169,588 KB
testcase_16 AC 3,795 ms
217,444 KB
testcase_17 AC 4,017 ms
212,312 KB
testcase_18 AC 703 ms
114,544 KB
testcase_19 AC 1,866 ms
158,052 KB
testcase_20 AC 4,183 ms
213,644 KB
testcase_21 AC 4,313 ms
218,236 KB
testcase_22 AC 4,244 ms
217,024 KB
testcase_23 AC 4,243 ms
213,768 KB
testcase_24 AC 1,112 ms
168,412 KB
testcase_25 AC 1,132 ms
168,772 KB
testcase_26 AC 4,063 ms
211,824 KB
testcase_27 AC 3,924 ms
211,956 KB
testcase_28 AC 4,108 ms
211,348 KB
testcase_29 AC 4,034 ms
211,592 KB
testcase_30 AC 38 ms
54,944 KB
testcase_31 AC 47 ms
67,496 KB
testcase_32 AC 57 ms
73,652 KB
testcase_33 AC 47 ms
67,304 KB
testcase_34 AC 63 ms
76,624 KB
testcase_35 AC 37 ms
55,728 KB
testcase_36 AC 59 ms
73,832 KB
testcase_37 AC 56 ms
72,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs():
    q = deque([(Si, Sj, A)])
    visited = [[[False]*4000 for _ in range(W)] for _ in range(H)]
    visited[Si][Sj][A] = True
    
    while q:
        cx, cy, s = q.popleft()
        
        for nx, ny in [(cx-1, cy), (cx+1, cy), (cx, cy-1), (cx, cy+1)]:
            if not (0<=nx<H and 0<=ny<W):
                continue
            
            ns = s+(1 if M[nx][ny]=='*' else -1)
            
            if ns==0 or ns>=4000:
                continue
            
            if not visited[nx][ny][ns]:
                visited[nx][ny][ns] = True
                q.append((nx, ny, ns))

    return visited[Gi][Gj][B]

H, W = map(int, input().split())
A, Si, Sj = map(int, input().split())
B, Gi, Gj = map(int, input().split())
M = [input() for _ in range(H)]

if bfs():
    print('Yes')
else:
    print('No')
0