結果

問題 No.697 池の数はいくつか
ユーザー KazunKazun
提出日時 2020-07-04 03:04:06
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,791 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 849,052 KB
最終ジャッジ日時 2024-11-25 16:15:56
合計ジャッジ時間 19,931 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,268 KB
testcase_01 AC 38 ms
53,988 KB
testcase_02 AC 37 ms
53,800 KB
testcase_03 AC 36 ms
52,948 KB
testcase_04 AC 35 ms
53,036 KB
testcase_05 AC 34 ms
53,600 KB
testcase_06 AC 35 ms
54,680 KB
testcase_07 AC 34 ms
52,336 KB
testcase_08 AC 34 ms
53,100 KB
testcase_09 AC 35 ms
52,364 KB
testcase_10 AC 33 ms
53,184 KB
testcase_11 AC 33 ms
53,308 KB
testcase_12 AC 33 ms
52,540 KB
testcase_13 AC 34 ms
52,824 KB
testcase_14 AC 33 ms
53,420 KB
testcase_15 AC 33 ms
53,760 KB
testcase_16 AC 34 ms
53,072 KB
testcase_17 AC 33 ms
53,144 KB
testcase_18 AC 32 ms
53,320 KB
testcase_19 AC 33 ms
52,612 KB
testcase_20 AC 33 ms
52,888 KB
testcase_21 AC 33 ms
53,480 KB
testcase_22 AC 32 ms
53,600 KB
testcase_23 AC 32 ms
53,328 KB
testcase_24 AC 400 ms
150,500 KB
testcase_25 AC 363 ms
150,464 KB
testcase_26 AC 366 ms
150,180 KB
testcase_27 AC 392 ms
151,348 KB
testcase_28 AC 361 ms
150,056 KB
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[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):
        return {r: self.members(r) for r in self.roots()}

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())
#-----------------------------------------------------------
H,W=map(int,input().split())
I=0
A=[]
D={}
L=[]

X=0
for i in range(H):
    F=list(map(int,input().split()))
    A.append(F)
    for j in range(W):
        if F[j]==1:
            D[I]=X
            X+=1
        I+=1

Z=Union_Find(X)

I=0
for y in range(H):
    for x in range(W):
        if x!=W-1:
            if A[y][x]==A[y][x+1]==1:
                J=y*W+x
                Q=D[J]
                Z.union(Q,Q+1)

        if y!=H-1:
            if A[y][x]==A[y+1][x]==1:
                J=y*W+x
                Z.union(D[J],D[J+W])            
            
print(Z.group_count())
0