結果

問題 No.323 yuki国
ユーザー kuuso1kuuso1
提出日時 2016-06-12 04:01:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 827 ms / 5,000 ms
コード長 1,218 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 136,712 KB
最終ジャッジ日時 2024-06-28 12:37:10
合計ジャッジ時間 14,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,888 KB
testcase_01 AC 57 ms
62,976 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 81 ms
76,800 KB
testcase_04 AC 61 ms
66,688 KB
testcase_05 AC 65 ms
68,864 KB
testcase_06 AC 60 ms
66,304 KB
testcase_07 AC 42 ms
54,144 KB
testcase_08 AC 692 ms
136,288 KB
testcase_09 AC 650 ms
136,428 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 54 ms
64,256 KB
testcase_12 AC 54 ms
63,488 KB
testcase_13 AC 683 ms
136,704 KB
testcase_14 AC 651 ms
136,576 KB
testcase_15 AC 581 ms
131,328 KB
testcase_16 AC 625 ms
135,936 KB
testcase_17 AC 696 ms
136,712 KB
testcase_18 AC 215 ms
92,928 KB
testcase_19 AC 413 ms
111,360 KB
testcase_20 AC 827 ms
136,464 KB
testcase_21 AC 782 ms
136,576 KB
testcase_22 AC 790 ms
136,704 KB
testcase_23 AC 775 ms
136,576 KB
testcase_24 AC 632 ms
131,200 KB
testcase_25 AC 603 ms
131,140 KB
testcase_26 AC 697 ms
136,448 KB
testcase_27 AC 714 ms
136,468 KB
testcase_28 AC 706 ms
136,604 KB
testcase_29 AC 693 ms
136,576 KB
testcase_30 AC 41 ms
53,632 KB
testcase_31 AC 58 ms
65,536 KB
testcase_32 AC 61 ms
66,944 KB
testcase_33 AC 56 ms
64,768 KB
testcase_34 AC 64 ms
68,608 KB
testcase_35 AC 42 ms
54,272 KB
testcase_36 AC 60 ms
66,944 KB
testcase_37 AC 59 ms
66,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int,input().split())
a, si, sj = map(int,input().split())
b, gi, gj = map(int,input().split())
m = [list(input()) for i in range(h)]
maxsize = 1200
visited = [[[False] * maxsize for i in range(w)] for j in range(h)]

qi = deque([h*w*maxsize])
qj = deque([h*w*maxsize])
qsize = deque([h*w*maxsize])
visited[si][sj][a] = True
qi.append(si)
qj.append(sj)
qsize.append(a)

dx = [0, 1, 0,-1]
dy = [1, 0,-1, 0]

while len(qsize):
    curi = qi.popleft()
    curj = qj.popleft()
    cursize = qsize.popleft()
    #print(cursize,curi, curj)
    for i in range(4):
        nexti = curi + dx[i]
        nextj = curj + dy[i]
        if 0 <= nexti < h and 0 <= nextj < w:
            pass
        else:
            continue

        if m[nexti][nextj] == "*":
            nextsize = cursize + 1
        else:
            nextsize = cursize - 1

        if 0 < nextsize < maxsize:
            pass
        else:
            continue

        if not visited[nexti][nextj][nextsize]:
            visited[nexti][nextj][nextsize] = True
            qi.append(nexti)
            qj.append(nextj)
            qsize.append(nextsize)

if visited[gi][gj][b]:
    print("Yes")
else:
    print("No")
0