結果

問題 No.13 囲みたい!
ユーザー dangodango
提出日時 2023-07-08 09:30:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 1,136 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 81,192 KB
最終ジャッジ日時 2024-07-22 05:24:23
合計ジャッジ時間 1,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,216 KB
testcase_01 AC 39 ms
52,464 KB
testcase_02 AC 38 ms
53,260 KB
testcase_03 AC 83 ms
81,192 KB
testcase_04 AC 48 ms
62,320 KB
testcase_05 AC 104 ms
80,944 KB
testcase_06 AC 52 ms
67,828 KB
testcase_07 AC 76 ms
76,612 KB
testcase_08 AC 63 ms
75,876 KB
testcase_09 AC 64 ms
76,032 KB
testcase_10 AC 58 ms
69,672 KB
testcase_11 AC 63 ms
76,172 KB
testcase_12 AC 49 ms
63,112 KB
testcase_13 AC 58 ms
72,104 KB
testcase_14 AC 67 ms
77,172 KB
testcase_15 AC 38 ms
53,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(15 * 10 ** 7)
def POS(i, j, w):
    return i * (w + 2) + j
def dfs(x, y, dir, number, board, w, h):
    dx = [1, 0, -1, 0]
    dy = [0, 1, 0, -1]
    board[POS(x, y, w)] = -number
    for k in range(4):
        if dir == k:
            continue
        nx = x + dx[k]
        ny = y + dy[k]
        if board[POS(nx, ny, w)] == -number:
            return 1
        if board[POS(nx, ny, w)] == number:
            t = dfs(nx, ny, (k + 2) % 4, number, board, w, h)
            if t == 1:
                return 1
    return 0
def main():
    w, h = map(int,input().split())
    board = [0] * ((w + 2) * (h + 2))
    for i in range(1, h + 1):
        row = list(map(int, input().split()))
        for j in range(1, w + 1):
            board[POS(i, j, w)] = row[j - 1]
    for i in range(1,h + 1):
        for j in range(1,w + 1):
            if board[POS(i, j, w)] > 0:
                res = dfs(i, j, 4, board[POS(i, j, w)], board, w, h)
                if res == 1:
                    print("possible")
                    exit(0)
    print("impossible")
    return
if __name__ == "__main__":
    main()
0