結果

問題 No.13 囲みたい!
ユーザー HydruHydru
提出日時 2023-01-22 19:43:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 1,431 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-24 23:01:44
合計ジャッジ時間 1,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 62 ms
67,840 KB
testcase_04 AC 49 ms
61,952 KB
testcase_05 AC 74 ms
74,880 KB
testcase_06 AC 50 ms
62,080 KB
testcase_07 AC 81 ms
77,056 KB
testcase_08 AC 66 ms
73,472 KB
testcase_09 AC 66 ms
73,344 KB
testcase_10 AC 57 ms
64,768 KB
testcase_11 AC 61 ms
70,656 KB
testcase_12 AC 45 ms
55,424 KB
testcase_13 AC 63 ms
69,120 KB
testcase_14 AC 58 ms
67,200 KB
testcase_15 AC 44 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

w,h=map(int,input().split())

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

visit=[[0 for _ in range(w)] for _ in range(h)]

for i in range(h):
    for j in range(w):
        if visit[i][j]:
            continue
        Q=deque()
        visit[i][j]=1
        Q.append((i,j))
        while(Q):
            y,x=Q.pop()
            cnt=0
            if y!=0:
                if M[y-1][x]==M[y][x]:
                    if visit[y-1][x]:
                        cnt+=1
                    else:
                        visit[y-1][x]=1
                        Q.append((y-1,x))
            if y!=h-1:
                if M[y+1][x]==M[y][x]:
                    if visit[y+1][x]:
                        cnt+=1
                    else:
                        visit[y+1][x]=1
                        Q.append((y+1,x))
            if x!=0:
                if M[y][x-1]==M[y][x]:
                    if visit[y][x-1]:
                        cnt+=1
                    else:
                        visit[y][x-1]=1
                        Q.append((y,x-1))
            if x!=w-1:
                if M[y][x+1]==M[y][x]:
                    if visit[y][x+1]:
                        cnt+=1
                    else:
                        visit[y][x+1]=1
                        Q.append((y,x+1))
            if cnt>=2:
                print("possible")
                exit()
    
print("impossible")
0