結果

問題 No.697 池の数はいくつか
ユーザー Hitoshi HayakawaHitoshi Hayakawa
提出日時 2019-09-06 16:04:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,295 ms / 6,000 ms
コード長 1,824 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 277,760 KB
最終ジャッジ日時 2024-11-08 08:22:04
合計ジャッジ時間 18,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 42 ms
52,352 KB
testcase_09 AC 42 ms
52,352 KB
testcase_10 AC 42 ms
52,608 KB
testcase_11 AC 41 ms
52,352 KB
testcase_12 AC 43 ms
52,224 KB
testcase_13 AC 41 ms
52,480 KB
testcase_14 AC 43 ms
52,480 KB
testcase_15 AC 42 ms
52,224 KB
testcase_16 AC 42 ms
52,224 KB
testcase_17 AC 43 ms
52,096 KB
testcase_18 AC 43 ms
52,608 KB
testcase_19 AC 43 ms
52,480 KB
testcase_20 AC 42 ms
52,224 KB
testcase_21 AC 42 ms
52,096 KB
testcase_22 AC 42 ms
52,608 KB
testcase_23 AC 43 ms
52,352 KB
testcase_24 AC 612 ms
106,240 KB
testcase_25 AC 617 ms
106,752 KB
testcase_26 AC 597 ms
105,600 KB
testcase_27 AC 618 ms
105,856 KB
testcase_28 AC 616 ms
106,112 KB
testcase_29 AC 1,346 ms
273,024 KB
testcase_30 AC 2,295 ms
275,840 KB
testcase_31 AC 1,320 ms
272,384 KB
testcase_32 AC 2,124 ms
277,760 KB
testcase_33 AC 2,134 ms
276,224 KB
testcase_34 AC 2,183 ms
277,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**6)
##############################

class UnionFind:
    def __init__(self, N):
        self.parent = [i for i in range(N)]

    def find(self, x):
        if self.parent[x] == x:
            return x
        else:
            self.parent[x] = self.find(self.parent[x])
            return self.parent[x]

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if (x == y):
            return

        self.parent[x] = y

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def delete(self, idx):
        self.parent[idx] = -1

H, W = map(int, input().split())
uf = UnionFind(H*W)

pond = [ [0 for _ in range(W)] for _ in range(H) ]

idx = 0
for i in range(H):
    A = list(map(int, input().split()))

    tmp = []
    for j in range(len(A)):
        if A[j] == 0:
            tmp.append(-1)
        else:
            tmp.append(idx)
        idx += 1

    pond[i] = tmp

#print(pond)
#exit()


idx = -1
for h in range(H):
    for w in range(W):
        idx += 1
        if pond[h][w] == -1:
            # 対象外のは壊す
            uf.delete(idx)
            continue

        if h > 0:
            if pond[h-1][w] > -1:
                uf.unite(pond[h-1][w], pond[h][w])
        if w > 0:
            if pond[h][w-1] > -1:
                uf.unite(pond[h][w-1], pond[h][w])
        if w < W-1:
            if pond[h][w+1] > -1:
                uf.unite(pond[h][w+1], pond[h][w])
        if h < H-1:
            if pond[h+1][w] > -1:
                uf.unite(pond[h+1][w], pond[h][w])


#print(uf.parent)

count = 0
for i in range(H*W):
    if uf.parent == -1:
        continue

    if uf.find(i) == i:
        count += 1

if count == H*W:
    print(0 if pond[0][0] == 0 else 1)
else:
    print(count)
0