結果

問題 No.13 囲みたい!
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-10-24 23:53:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 870 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-07-18 08:33:17
合計ジャッジ時間 1,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 46 ms
11,392 KB
testcase_04 AC 62 ms
13,696 KB
testcase_05 AC 57 ms
11,392 KB
testcase_06 AC 34 ms
11,008 KB
testcase_07 AC 55 ms
10,880 KB
testcase_08 AC 56 ms
11,136 KB
testcase_09 AC 56 ms
11,136 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 51 ms
11,008 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 38 ms
10,880 KB
testcase_14 AC 40 ms
11,008 KB
testcase_15 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

W, H = map(int, input().split())
M = [list(map(int, input().split())) for _ in range(H)]

depth = [[-1] * W for _ in range(H)]

for stH in range(H):
    for stW in range(W):
        if depth[stH][stW] >= 0:
            continue

        now = M[stH][stW]
        st = deque([(stH, stW, 0)])
        while st:
            nh, nw, d = st.pop()

            if depth[nh][nw] >= 0:
                if abs(depth[nh][nw] - d) >= 3:
                    print('possible')
                    exit()
                continue
            depth[nh][nw] = d

            for h in [nh - 1, nh + 1]:
                if 0 <= h < H and M[h][nw] == now:
                    st.append((h, nw, d + 1))
            for w in [nw - 1, nw + 1]:
                if 0 <= w < W and M[nh][w] == now:
                    st.append((nh, w, d + 1))

print('impossible')
0