結果

問題 No.323 yuki国
ユーザー roiti46roiti46
提出日時 2015-12-16 00:32:58
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,940 ms / 5,000 ms
コード長 766 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 114,716 KB
最終ジャッジ日時 2024-09-16 05:18:47
合計ジャッジ時間 24,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
78,848 KB
testcase_01 AC 81 ms
79,224 KB
testcase_02 AC 80 ms
78,984 KB
testcase_03 AC 81 ms
78,976 KB
testcase_04 AC 81 ms
79,104 KB
testcase_05 AC 100 ms
79,360 KB
testcase_06 AC 87 ms
78,976 KB
testcase_07 AC 82 ms
78,888 KB
testcase_08 AC 1,007 ms
109,568 KB
testcase_09 AC 955 ms
109,312 KB
testcase_10 AC 80 ms
78,868 KB
testcase_11 AC 135 ms
100,352 KB
testcase_12 AC 133 ms
100,616 KB
testcase_13 AC 992 ms
109,184 KB
testcase_14 AC 1,031 ms
109,568 KB
testcase_15 AC 2,570 ms
113,024 KB
testcase_16 AC 1,084 ms
109,696 KB
testcase_17 AC 1,092 ms
109,728 KB
testcase_18 AC 116 ms
79,660 KB
testcase_19 AC 1,078 ms
110,340 KB
testcase_20 AC 156 ms
86,528 KB
testcase_21 AC 1,665 ms
108,992 KB
testcase_22 AC 1,062 ms
104,556 KB
testcase_23 AC 2,005 ms
108,900 KB
testcase_24 AC 396 ms
106,796 KB
testcase_25 AC 2,940 ms
114,716 KB
testcase_26 AC 349 ms
83,200 KB
testcase_27 AC 413 ms
82,944 KB
testcase_28 AC 950 ms
108,120 KB
testcase_29 AC 919 ms
108,452 KB
testcase_30 AC 80 ms
78,976 KB
testcase_31 AC 82 ms
78,848 KB
testcase_32 AC 89 ms
79,680 KB
testcase_33 AC 81 ms
79,104 KB
testcase_34 AC 95 ms
79,360 KB
testcase_35 AC 82 ms
78,848 KB
testcase_36 AC 87 ms
79,616 KB
testcase_37 AC 81 ms
78,720 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 = [[[False]*51 for i in xrange(51)] for j in xrange(max(A, B) + 100)] 

while que:
    a, x, y = que.pop(0)
    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