結果

問題 No.13 囲みたい!
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-05-26 22:55:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,733 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-10-07 16:21:29
合計ジャッジ時間 2,552 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 42 ms
52,992 KB
testcase_03 AC 106 ms
81,920 KB
testcase_04 RE -
testcase_05 AC 121 ms
82,288 KB
testcase_06 AC 64 ms
71,168 KB
testcase_07 AC 90 ms
77,124 KB
testcase_08 AC 80 ms
77,184 KB
testcase_09 AC 79 ms
76,672 KB
testcase_10 AC 71 ms
74,368 KB
testcase_11 AC 79 ms
77,056 KB
testcase_12 AC 56 ms
65,792 KB
testcase_13 AC 76 ms
76,800 KB
testcase_14 AC 77 ms
76,476 KB
testcase_15 AC 40 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import array
import itertools
import sys


REC_LIMIT = 3600
DELTAS = [(1, 0), (-1, 0), (0, 1), (0, -1)]
UNDEF = (-1, -1)


class Solver(object):

    def __init__(self, width, height, field):
        self.width = width
        self.height = height
        self.field = field
        self.visited = [array.array("B", (False for _ in range(width)))
                        for _ in range(height)]
        self.pred = [[UNDEF for _ in range(width)] for _ in range(height)]
        self.answer = False

    def in_field(self, r, c):
        return 0 <= r < self.height and 0 <= c < self.width

    def dfs(self, r0, c0, num):
        if self.field[r0][c0] != num:
            return
        elif self.visited[r0][c0]:
            self.answer = True
            return
        self.visited[r0][c0] = True
        for dr, dc in DELTAS:
            (r, c) = (r0 + dr, c0 + dc)
            if not self.in_field(r, c):
                continue
            elif self.pred[r0][c0] == (r, c):
                continue
            self.pred[r][c] = (r0, c0)
            self.dfs(r, c, num)

    def judge(self):
        rcs = itertools.product(range(self.height), range(self.width))
        for r, c in rcs:
            if not self.visited[r][c]:
                self.dfs(r, c, self.field[r][c])
            if self.answer:
                return True
        else:
            return False


def main():
    sys.setrecursionlimit(REC_LIMIT)
    width, height = map(int, input().split())
    field = [array.array("I", map(int, input().split()))
             for _ in range(height)]
    solver = Solver(width, height, field)
    print("possible" if solver.judge() else "impossible")


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