結果

問題 No.697 池の数はいくつか
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-01-03 00:18:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 1,158 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 521,476 KB
最終ジャッジ日時 2024-05-04 07:17:07
合計ジャッジ時間 15,935 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 28 ms
11,008 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 25 ms
11,008 KB
testcase_05 AC 25 ms
11,008 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 24 ms
10,880 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 25 ms
10,880 KB
testcase_15 AC 25 ms
10,880 KB
testcase_16 AC 26 ms
10,880 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 27 ms
10,880 KB
testcase_20 AC 25 ms
10,880 KB
testcase_21 AC 26 ms
10,880 KB
testcase_22 AC 26 ms
11,008 KB
testcase_23 AC 27 ms
10,880 KB
testcase_24 AC 1,289 ms
66,632 KB
testcase_25 AC 1,347 ms
66,564 KB
testcase_26 AC 1,281 ms
66,736 KB
testcase_27 AC 1,302 ms
66,624 KB
testcase_28 AC 1,278 ms
66,708 KB
testcase_29 MLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.par = list(range(self.n))
        self.rank = [1] * n
        self.count = n
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
    def unite(self, x, y):
        p = self.find(x)
        q = self.find(y)
        if p == q:
            return None
        if p > q:
            p, q = q, p
        self.rank[p] += self.rank[q]
        self.par[q] = p
        self.count -= 1
    def same(self, x, y):
        return self.find(x) == self.find(y)
    def size(self, x):
        return self.rank[x]
    def count(self):
        return self.count
h, w = map(int, input().split())
a = [list(map(int, input().split())) for i in range(h)]
UF = UnionFind(h * w)
for i in range(h):
    for j in range(1, w):
        if a[i][j] == a[i][j - 1] == 1:
            UF.unite(i * w + j, i * w + j - 1)
for j in range(w):
    for i in range(1, h):
        if a[i][j] == a[i - 1][j] == 1:
            UF.unite(i * w + j, (i - 1) * w + j)
print(UF.count - sum(i.count(0) for i in a))
0