結果

問題 No.697 池の数はいくつか
ユーザー vwxyzvwxyz
提出日時 2022-01-05 08:18:48
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,792 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 308,404 KB
最終ジャッジ日時 2024-05-04 07:32:55
合計ジャッジ時間 22,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,668 KB
testcase_01 AC 41 ms
54,540 KB
testcase_02 AC 44 ms
56,228 KB
testcase_03 AC 42 ms
54,528 KB
testcase_04 AC 41 ms
54,060 KB
testcase_05 AC 42 ms
54,136 KB
testcase_06 AC 45 ms
54,988 KB
testcase_07 AC 42 ms
55,724 KB
testcase_08 AC 42 ms
54,960 KB
testcase_09 AC 44 ms
55,588 KB
testcase_10 AC 42 ms
55,208 KB
testcase_11 AC 41 ms
55,320 KB
testcase_12 AC 41 ms
55,556 KB
testcase_13 AC 43 ms
54,996 KB
testcase_14 AC 41 ms
55,924 KB
testcase_15 AC 42 ms
55,128 KB
testcase_16 AC 43 ms
55,756 KB
testcase_17 AC 42 ms
55,324 KB
testcase_18 AC 42 ms
54,496 KB
testcase_19 AC 42 ms
55,064 KB
testcase_20 AC 43 ms
55,308 KB
testcase_21 AC 42 ms
53,868 KB
testcase_22 AC 43 ms
54,524 KB
testcase_23 AC 44 ms
54,396 KB
testcase_24 AC 312 ms
111,248 KB
testcase_25 AC 330 ms
127,596 KB
testcase_26 AC 331 ms
114,192 KB
testcase_27 AC 311 ms
110,776 KB
testcase_28 AC 314 ms
110,728 KB
testcase_29 AC 4,326 ms
210,748 KB
testcase_30 MLE -
testcase_31 AC 4,452 ms
211,772 KB
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import defaultdict

class UnionFind:
    def __init__(self,n):
        self.n=n
        self.parents=[-1]*n

    def Find(self,x):
        stack=[]
        while self.parents[x]>=0:
            stack.append(x)
            x=self.parents[x]
        for y in stack:
            self.parents[y]=x
        return x

    def Union(self,x,y):
        x=self.Find(x)
        y=self.Find(y)
        if x==y:
            return
        if self.parents[x]>self.parents[y]:
            x,y=y,x
        self.parents[x]+=self.parents[y]
        self.parents[y]=x

    def Size(self,x):
        return -self.parents[self.Find(x)]

    def Same(self,x,y):
        return self.Find(x)==self.Find(y)

    def Members(self,x):
        root = self.Find(x)
        return [i for i in range(self.n) if self.Find(i)==root]

    def Roots(self):
        return [i for i, x in enumerate(self.parents) if x<0]

    def Group_Count(self):
        return len(self.Roots())

    def All_Group_Members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.Find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.All_Group_Members().items())

H,W=map(int,readline().split())
A=list(map(int,readline().split()))
ans=0
UF=UnionFind(H*W)
for w in range(W-1):
    if A[w] and A[w+1]:
        UF.Union(w,w+1)
ans-=A.count(0)
for h in range(1,H):
    prev=A
    A=list(map(int,readline().split()))
    for w in range(W-1):
        if A[w] and A[w+1]:
            UF.Union(h*W+w,h*W+w+1)
    for w in range(W):
        if prev[w] and A[w]:
            UF.Union((h-1)*W+w,h*W+w)
    ans-=A.count(0)
ans+=UF.Group_Count()
print(ans)
0