結果

問題 No.13 囲みたい!
ユーザー maspymaspy
提出日時 2020-03-17 03:34:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 1,096 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-05-06 18:42:06
合計ジャッジ時間 1,638 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 46 ms
12,288 KB
testcase_04 AC 58 ms
13,056 KB
testcase_05 AC 54 ms
12,288 KB
testcase_06 AC 44 ms
11,904 KB
testcase_07 AC 53 ms
12,032 KB
testcase_08 AC 55 ms
12,032 KB
testcase_09 AC 52 ms
11,904 KB
testcase_10 AC 33 ms
10,880 KB
testcase_11 AC 46 ms
11,648 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 37 ms
11,136 KB
testcase_14 AC 37 ms
11,264 KB
testcase_15 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools

# %%
W, H = map(int, readline().split())
M = tuple(map(int, read().split()))

# %%
N = W * H
graph = [[] for _ in range(N)]
for i, j in itertools.product(range(W - 1), range(H)):
    x = W * j + i
    if M[x] == M[x + 1]:
        graph[x].append(x + 1)
        graph[x + 1].append(x)
for i, j in itertools.product(range(W), range(H - 1)):
    x = W * j + i
    if M[x] == M[x + W]:
        graph[x].append(x + W)
        graph[x + W].append(x)


# %%
visited = [False] * N
found = False
for i in range(N):
    if visited[i]:
        continue
    visited[i] = True
    V = 1
    E = 0
    stack = [i]
    while stack:
        v = stack.pop()
        E += len(graph[v])
        for w in graph[v]:
            if visited[w]:
                continue
            V += 1
            visited[w] = True
            stack.append(w)
    E //= 2
    if V <= E:
        found = True
        break

print('possible' if found else 'impossible')
0