結果

問題 No.323 yuki国
ユーザー roiti46roiti46
提出日時 2015-12-16 00:29:31
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 4,642 ms / 5,000 ms
コード長 699 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 76,572 KB
実行使用メモリ 333,296 KB
最終ジャッジ日時 2024-09-16 05:16:08
合計ジャッジ時間 49,904 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
75,160 KB
testcase_01 AC 63 ms
75,560 KB
testcase_02 AC 67 ms
75,520 KB
testcase_03 AC 72 ms
75,424 KB
testcase_04 AC 67 ms
75,544 KB
testcase_05 AC 110 ms
79,744 KB
testcase_06 AC 83 ms
78,120 KB
testcase_07 AC 63 ms
75,796 KB
testcase_08 AC 2,902 ms
333,296 KB
testcase_09 AC 2,759 ms
333,072 KB
testcase_10 AC 66 ms
75,648 KB
testcase_11 AC 76 ms
77,824 KB
testcase_12 AC 77 ms
77,732 KB
testcase_13 AC 2,490 ms
333,108 KB
testcase_14 AC 2,600 ms
333,268 KB
testcase_15 AC 3,831 ms
305,704 KB
testcase_16 AC 2,866 ms
333,052 KB
testcase_17 AC 2,584 ms
330,768 KB
testcase_18 AC 105 ms
78,720 KB
testcase_19 AC 2,015 ms
281,548 KB
testcase_20 AC 151 ms
83,624 KB
testcase_21 AC 3,632 ms
304,072 KB
testcase_22 AC 1,271 ms
165,976 KB
testcase_23 AC 3,666 ms
304,056 KB
testcase_24 AC 414 ms
99,600 KB
testcase_25 AC 4,469 ms
308,196 KB
testcase_26 AC 412 ms
99,152 KB
testcase_27 AC 4,642 ms
307,760 KB
testcase_28 AC 2,486 ms
332,436 KB
testcase_29 AC 2,495 ms
332,548 KB
testcase_30 AC 70 ms
75,392 KB
testcase_31 AC 87 ms
78,116 KB
testcase_32 AC 94 ms
78,464 KB
testcase_33 AC 87 ms
77,844 KB
testcase_34 AC 98 ms
77,968 KB
testcase_35 AC 67 ms
75,288 KB
testcase_36 AC 93 ms
77,836 KB
testcase_37 AC 82 ms
75,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = [(A, Sx, Sy)]
used = set()

while que:
    a, x, y = que.pop(0)
    if (a, x, y) in used: continue
    used.add((a, x, y))
    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 >= 1100: continue
            if (na, nx, ny) in used: continue
            que.append((na, nx, ny))
else:
    print "No"
0