結果

問題 No.13 囲みたい!
ユーザー KudeKude
提出日時 2020-09-03 20:47:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 957 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-05-03 04:02:40
合計ジャッジ時間 1,956 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 73 ms
70,400 KB
testcase_04 AC 68 ms
68,864 KB
testcase_05 AC 70 ms
68,736 KB
testcase_06 AC 95 ms
76,928 KB
testcase_07 AC 94 ms
76,544 KB
testcase_08 AC 61 ms
65,408 KB
testcase_09 AC 59 ms
65,664 KB
testcase_10 AC 54 ms
61,184 KB
testcase_11 AC 57 ms
64,640 KB
testcase_12 AC 54 ms
60,672 KB
testcase_13 AC 60 ms
63,616 KB
testcase_14 AC 56 ms
63,104 KB
testcase_15 AC 43 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w, h = map(int, input().split())
m = [list(map(int, input().split())) for _ in range(h)]
pre = [[None] * w for _ in range(h)]
ok = False
for i in range(h):
    for j in range(w):
        if pre[i][j] is None:
            num = m[i][j]
            pre[i][j] = i, j
            q = [(i, j)]
            while q:
                x, y = q.pop()
                for nx, ny in (x-1, y), (x+1, y), (x, y-1), (x, y+1):
                    if 0 <= nx < h and 0 <= ny < w and m[nx][ny] == num and (nx, ny) != pre[x][y]:
                        if pre[nx][ny] is None:
                            pre[nx][ny] = x, y
                            q.append((nx, ny))
                        else:
                            ok = True
print('im' * (not ok) + 'possible')
0