結果

問題 No.13 囲みたい!
ユーザー HydruHydru
提出日時 2023-01-22 19:52:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 5,000 ms
コード長 886 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-24 23:06:55
合計ジャッジ時間 2,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 64 ms
67,328 KB
testcase_04 AC 56 ms
62,080 KB
testcase_05 AC 80 ms
73,472 KB
testcase_06 AC 68 ms
66,944 KB
testcase_07 AC 102 ms
76,928 KB
testcase_08 AC 75 ms
74,624 KB
testcase_09 AC 68 ms
74,728 KB
testcase_10 AC 63 ms
67,200 KB
testcase_11 AC 61 ms
70,400 KB
testcase_12 AC 56 ms
63,616 KB
testcase_13 AC 67 ms
68,224 KB
testcase_14 AC 67 ms
69,760 KB
testcase_15 AC 47 ms
54,912 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)]

vx=[0,1,0,-1]
vy=[1,0,-1,0]

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
            for k in range(4):
                ny=y+vy[k]
                nx=x+vx[k]
                if 0<=ny<len(M) and 0<=nx<len(M[0]):
                    if M[ny][nx]==M[y][x]:
                        if visit[ny][nx]:
                            cnt+=1
                        else:
                            visit[ny][nx]=1
                            Q.append((ny,nx))
            if cnt>=2:
                print("possible")
                exit()
    
print("impossible")
0