結果

問題 No.323 yuki国
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-03-10 23:02:07
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,749 bytes
コンパイル時間 614 ms
コンパイル使用メモリ 76,568 KB
実行使用メモリ 674,452 KB
最終ジャッジ日時 2024-09-24 17:54:26
合計ジャッジ時間 39,255 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
77,464 KB
testcase_01 AC 84 ms
77,576 KB
testcase_02 AC 85 ms
77,352 KB
testcase_03 AC 90 ms
78,376 KB
testcase_04 AC 86 ms
77,480 KB
testcase_05 AC 160 ms
85,484 KB
testcase_06 AC 128 ms
81,348 KB
testcase_07 AC 87 ms
77,476 KB
testcase_08 TLE -
testcase_09 AC 2,912 ms
403,548 KB
testcase_10 AC 87 ms
78,108 KB
testcase_11 AC 106 ms
79,276 KB
testcase_12 AC 104 ms
79,140 KB
testcase_13 AC 2,807 ms
403,340 KB
testcase_14 TLE -
testcase_15 AC 2,152 ms
345,584 KB
testcase_16 MLE -
testcase_17 AC 2,730 ms
403,516 KB
testcase_18 AC 140 ms
82,084 KB
testcase_19 AC 3,278 ms
424,224 KB
testcase_20 AC 168 ms
86,068 KB
testcase_21 MLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy
# -*- coding: utf-8 -*-

import collections


State = collections.namedtuple("State", "size r c")


class BreadthFirstSearch(object):

    def __init__(self, height, width, start, goal, stage):
        self.height = height
        self.width = width
        self.limit = 2000
        self.start = start
        self.goal = goal
        self.stage = stage
        self.deltas = [(1, 0), (-1, 0), (0, 1), (0, -1)]
        self.possible = collections.defaultdict(bool)

    def judge(self):
        self.possible[self.start] = True
        q = collections.deque()
        q.append(self.start)
        while q:
            state0 = q.popleft()
            if state0 == self.goal:
                break
            for dr, dc in self.deltas:
                (r, c) = (state0.r + dr, state0.c + dc)
                if r < 0 or r >= self.height or c < 0 or c >= self.width:
                    continue
                size = state0.size
                if self.stage[r][c] == "*":
                    size += 1
                else:
                    size -= 1
                if size <= 0 or size > self.limit:
                    continue
                state = State(size, r, c)
                if self.possible[state]:
                    continue
                self.possible[state] = True
                q.append(state)
        return self.possible[self.goal]


def main():
    input = raw_input
    height, width = map(int, input().split())
    start = State(*map(int, input().split()))
    goal = State(*map(int, input().split()))
    stage = [input() for _ in range(height)]
    bfs = BreadthFirstSearch(height, width, start, goal, stage)
    print("Yes" if bfs.judge() else "No")


if __name__ == '__main__':
    main()
0