結果

問題 No.13 囲みたい!
ユーザー sotanishysotanishy
提出日時 2021-03-16 22:02:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 787 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-11-08 16:55:10
合計ジャッジ時間 2,091 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 62 ms
65,024 KB
testcase_04 AC 49 ms
59,264 KB
testcase_05 AC 72 ms
68,992 KB
testcase_06 AC 66 ms
64,768 KB
testcase_07 AC 97 ms
76,416 KB
testcase_08 AC 67 ms
66,304 KB
testcase_09 AC 67 ms
66,176 KB
testcase_10 AC 62 ms
63,104 KB
testcase_11 AC 59 ms
63,872 KB
testcase_12 AC 53 ms
60,160 KB
testcase_13 AC 59 ms
63,232 KB
testcase_14 AC 63 ms
64,384 KB
testcase_15 AC 44 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

W, H = map(int, input().split())
M = [list(map(int, input().split())) for _ in range(H)]
used = [[False] * W for _ in range(H)]
for si in range(H):
    for sj in range(W):
        if used[si][sj]:
            continue
        st = [(si, sj, -1, -1)]
        used[si][sj] = True
        while st:
            i, j, pi, pj = st.pop()
            for di, dj in [(1, 0), (0, 1), (-1, 0), (0, -1)]:
                ni, nj = i + di, j + dj
                if 0 <= ni < H and 0 <= nj < W and M[ni][nj] == M[i][j] and (ni, nj) != (pi, pj):
                    if used[ni][nj]:
                        print('possible')
                        exit()
                    st.append((ni, nj, i, j))
                    used[ni][nj] = True
print('impossible')
0