結果

問題 No.323 yuki国
ユーザー ynyn
提出日時 2016-06-11 16:53:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 987 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 252,952 KB
最終ジャッジ日時 2024-10-09 12:54:58
合計ジャッジ時間 33,311 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,864 KB
testcase_01 AC 53 ms
62,336 KB
testcase_02 AC 42 ms
52,992 KB
testcase_03 AC 215 ms
78,408 KB
testcase_04 AC 108 ms
76,672 KB
testcase_05 AC 144 ms
77,288 KB
testcase_06 AC 104 ms
76,672 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 TLE -
testcase_09 AC 3,977 ms
247,424 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 58 ms
63,360 KB
testcase_12 AC 54 ms
63,872 KB
testcase_13 TLE -
testcase_14 AC 2,574 ms
101,256 KB
testcase_15 AC 3,496 ms
226,976 KB
testcase_16 AC 3,528 ms
104,992 KB
testcase_17 TLE -
testcase_18 AC 1,346 ms
128,988 KB
testcase_19 AC 2,650 ms
183,700 KB
testcase_20 AC 4,104 ms
252,952 KB
testcase_21 AC 4,116 ms
252,476 KB
testcase_22 AC 4,358 ms
252,248 KB
testcase_23 AC 4,152 ms
252,556 KB
testcase_24 AC 3,360 ms
226,648 KB
testcase_25 AC 3,475 ms
224,740 KB
testcase_26 AC 4,150 ms
247,960 KB
testcase_27 AC 4,054 ms
250,820 KB
testcase_28 AC 3,421 ms
102,172 KB
testcase_29 AC 3,518 ms
101,584 KB
testcase_30 AC 42 ms
54,832 KB
testcase_31 AC 96 ms
76,880 KB
testcase_32 AC 134 ms
77,324 KB
testcase_33 AC 92 ms
76,776 KB
testcase_34 AC 150 ms
78,152 KB
testcase_35 AC 40 ms
53,984 KB
testcase_36 AC 119 ms
77,048 KB
testcase_37 AC 105 ms
76,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
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)]

visited = [[[False] * 1200 for i in range(w)] for j in range(h)]

q = []
visited[si][sj][a] = True
heapq.heappush(q, (si, sj, a))

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

while len(q):
    curi, curj, cursize = heapq.heappop(q)

    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 < 1200:
            pass
        else:
            continue

        if not visited[nexti][nextj][nextsize]:
            visited[nexti][nextj][nextsize] = True
            heapq.heappush(q,(nexti, nextj, nextsize))


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