結果

問題 No.323 yuki国
ユーザー roarisroaris
提出日時 2019-12-08 20:11:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 859 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,684 KB
実行使用メモリ 251,940 KB
最終ジャッジ日時 2024-06-10 03:15:33
合計ジャッジ時間 7,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,036 KB
testcase_01 AC 46 ms
65,040 KB
testcase_02 AC 36 ms
55,680 KB
testcase_03 AC 102 ms
80,432 KB
testcase_04 AC 57 ms
76,432 KB
testcase_05 AC 67 ms
76,940 KB
testcase_06 AC 55 ms
76,544 KB
testcase_07 AC 37 ms
55,880 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 37 ms
54,568 KB
testcase_11 AC 45 ms
65,344 KB
testcase_12 AC 44 ms
64,476 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,317 ms
188,760 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 836 ms
123,924 KB
testcase_19 AC 2,527 ms
178,432 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,284 ms
188,420 KB
testcase_25 AC 1,270 ms
188,300 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 40 ms
55,800 KB
testcase_31 AC 48 ms
70,700 KB
testcase_32 AC 65 ms
76,604 KB
testcase_33 AC 50 ms
70,092 KB
testcase_34 AC 73 ms
76,704 KB
testcase_35 AC 39 ms
54,740 KB
testcase_36 AC 64 ms
76,444 KB
testcase_37 AC 60 ms
76,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs():
    q = deque([(Si, Sj, A)])
    visited = [[[False]*(5000) 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>=5000:
                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