結果

問題 No.697 池の数はいくつか
ユーザー Hitoshi HayakawaHitoshi Hayakawa
提出日時 2019-09-06 15:45:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 2,115 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 818,112 KB
最終ジャッジ日時 2024-11-25 15:12:31
合計ジャッジ時間 46,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 27 ms
11,008 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 27 ms
10,880 KB
testcase_21 AC 28 ms
11,008 KB
testcase_22 AC 27 ms
10,880 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 2,311 ms
106,568 KB
testcase_25 AC 2,362 ms
106,628 KB
testcase_26 AC 2,293 ms
106,496 KB
testcase_27 AC 2,262 ms
106,456 KB
testcase_28 AC 2,309 ms
106,552 KB
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class UnionFind:
    def __init__(self, N):
        self.rank = [0] * N
        self.parent = [i for i in range(N)]
        self.n = 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

        if (self.rank[x] < self.rank[y]):
            self.parent[x] = y
        else:
            self.parent[y] = x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1

    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+1)

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

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

    tmp_idx = []
    tmp = []
    for j in range(len(A)):
        tmp.append(A[j])
        tmp_idx.append(idx)

        idx += 1

    pond[i] = tmp
    idxs[i] = tmp_idx

#print(pond)
#print(idxs)
#exit()


for h in range(H):
    for w in range(W):
        if pond[h][w] == 0:
            # 対象外のは -1 を突っ込んで壊す
            uf.delete(idxs[h][w])
            continue

        if h > 0:
            if pond[h-1][w] == 1:
                uf.unite(idxs[h-1][w], idxs[h][w])
        if w > 0:
            if pond[h][w-1] == 1:
                uf.unite(idxs[h][w-1], idxs[h][w])
        if w < W-1:
            if pond[h][w+1] == 1:
                uf.unite(idxs[h][w+1], idxs[h][w])
        if h < H-1:
            if pond[h+1][w] == 1:
                uf.unite(idxs[h+1][w], idxs[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