結果

問題 No.323 yuki国
ユーザー roiti46roiti46
提出日時 2015-12-16 00:37:31
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 692 ms / 5,000 ms
コード長 806 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 149,876 KB
最終ジャッジ日時 2024-06-28 12:19:10
合計ジャッジ時間 12,567 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
78,592 KB
testcase_01 AC 100 ms
78,336 KB
testcase_02 AC 101 ms
78,464 KB
testcase_03 AC 103 ms
78,848 KB
testcase_04 AC 103 ms
78,464 KB
testcase_05 AC 119 ms
79,488 KB
testcase_06 AC 108 ms
78,976 KB
testcase_07 AC 101 ms
78,720 KB
testcase_08 AC 575 ms
132,608 KB
testcase_09 AC 541 ms
132,476 KB
testcase_10 AC 99 ms
79,060 KB
testcase_11 AC 150 ms
97,024 KB
testcase_12 AC 145 ms
96,512 KB
testcase_13 AC 555 ms
132,992 KB
testcase_14 AC 556 ms
134,912 KB
testcase_15 AC 492 ms
145,668 KB
testcase_16 AC 548 ms
134,912 KB
testcase_17 AC 598 ms
133,504 KB
testcase_18 AC 130 ms
79,860 KB
testcase_19 AC 517 ms
132,992 KB
testcase_20 AC 159 ms
87,508 KB
testcase_21 AC 692 ms
134,580 KB
testcase_22 AC 359 ms
111,480 KB
testcase_23 AC 688 ms
132,472 KB
testcase_24 AC 223 ms
109,248 KB
testcase_25 AC 601 ms
149,876 KB
testcase_26 AC 181 ms
84,972 KB
testcase_27 AC 217 ms
86,172 KB
testcase_28 AC 688 ms
129,748 KB
testcase_29 AC 627 ms
128,116 KB
testcase_30 AC 98 ms
78,692 KB
testcase_31 AC 101 ms
78,848 KB
testcase_32 AC 107 ms
79,232 KB
testcase_33 AC 103 ms
78,720 KB
testcase_34 AC 114 ms
79,616 KB
testcase_35 AC 101 ms
78,720 KB
testcase_36 AC 108 ms
78,720 KB
testcase_37 AC 103 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
dxy = zip([1, 0, -1, 0], [0, 1, 0, -1])
H, W = map(int, raw_input().split())
A, Sy, Sx = map(int, raw_input().split())
B, Gy, Gx = map(int, raw_input().split())
M = [raw_input() for i in xrange(H)]

que = deque([(A, Sx, Sy)])
used = [[[False]*51 for i in xrange(51)] for j in xrange(max(A, B) + 100)] 

while que:
    a, x, y = que.popleft()
    if used[a][x][y]: continue
    used[a][x][y] = True
    if Gx == x and Gy == y and a == B:
        print "Yes"
        break
    for dx, dy in dxy:
        nx, ny = x + dx, y + dy
        if 0 <= nx < W and 0 <= ny < H:
            na = a + (1 if M[ny][nx] == "*" else -1)
            if na <= 0 or na >= max(A, B) + 100: continue
            if used[na][nx][ny]: continue
            que.append((na, nx, ny))
else:
    print "No"
0