結果

問題 No.13 囲みたい!
ユーザー ayaoniayaoni
提出日時 2020-12-21 04:29:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 1,268 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-21 12:39:31
合計ジャッジ時間 2,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,272 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 45 ms
54,144 KB
testcase_03 AC 65 ms
66,560 KB
testcase_04 AC 52 ms
61,184 KB
testcase_05 AC 87 ms
76,672 KB
testcase_06 AC 68 ms
67,456 KB
testcase_07 AC 95 ms
77,312 KB
testcase_08 AC 72 ms
76,680 KB
testcase_09 AC 72 ms
77,028 KB
testcase_10 AC 64 ms
68,736 KB
testcase_11 AC 61 ms
74,880 KB
testcase_12 AC 55 ms
64,896 KB
testcase_13 AC 59 ms
69,120 KB
testcase_14 AC 64 ms
71,296 KB
testcase_15 AC 43 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


W,H = MI()
M = [LI() for _ in range(H)]

flag = [[0]*W for _ in range(H)]
directions = [(-1,0),(1,0),(0,-1),(0,1)]
for i in range(H):
    for j in range(W):
        if flag[i][j] == 0:
            flag[i][j] = 1
            deq = deque([(i,j,-1,-1)])
            while deq:
                ci,cj,pi,pj = deq.pop()
                for di,dj in directions:
                    ni,nj = ci+di,cj+dj
                    if not (0 <= ni < H and 0 <= nj < W) or M[ni][nj] != M[i][j] or (ni,nj) == (pi,pj):
                        continue
                    elif flag[ni][nj] == 0:
                        deq.append((ni,nj,ci,cj))
                        flag[ni][nj] = 1
                    else:
                        print('possible')
                        exit()

print('impossible')
0