結果

問題 No.697 池の数はいくつか
ユーザー vwxyzvwxyz
提出日時 2022-01-05 08:08:33
言語 PyPy2
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,656 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 76,832 KB
実行使用メモリ 371,084 KB
最終ジャッジ日時 2024-11-25 17:14:36
合計ジャッジ時間 18,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
77,864 KB
testcase_01 AC 74 ms
77,604 KB
testcase_02 AC 76 ms
77,360 KB
testcase_03 AC 74 ms
77,836 KB
testcase_04 AC 74 ms
77,624 KB
testcase_05 AC 75 ms
77,600 KB
testcase_06 AC 76 ms
77,348 KB
testcase_07 AC 74 ms
77,244 KB
testcase_08 AC 74 ms
77,744 KB
testcase_09 AC 74 ms
77,376 KB
testcase_10 AC 76 ms
77,604 KB
testcase_11 AC 79 ms
77,504 KB
testcase_12 AC 77 ms
77,696 KB
testcase_13 AC 77 ms
77,628 KB
testcase_14 AC 73 ms
77,960 KB
testcase_15 AC 74 ms
77,572 KB
testcase_16 AC 75 ms
77,840 KB
testcase_17 AC 75 ms
77,948 KB
testcase_18 AC 74 ms
77,848 KB
testcase_19 AC 72 ms
77,604 KB
testcase_20 AC 74 ms
77,324 KB
testcase_21 AC 74 ms
77,832 KB
testcase_22 AC 75 ms
77,472 KB
testcase_23 AC 79 ms
77,476 KB
testcase_24 AC 351 ms
120,056 KB
testcase_25 AC 327 ms
121,284 KB
testcase_26 AC 338 ms
121,360 KB
testcase_27 AC 357 ms
121,368 KB
testcase_28 AC 324 ms
119,900 KB
testcase_29 AC 2,935 ms
228,312 KB
testcase_30 MLE -
testcase_31 AC 3,088 ms
228,200 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

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