結果
問題 | No.697 池の数はいくつか |
ユーザー | Kazun |
提出日時 | 2020-07-04 02:58:05 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,794 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 82,040 KB |
実行使用メモリ | 849,716 KB |
最終ジャッジ日時 | 2024-11-25 16:17:55 |
合計ジャッジ時間 | 25,439 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,136 KB |
testcase_01 | AC | 37 ms
52,548 KB |
testcase_02 | AC | 36 ms
54,552 KB |
testcase_03 | AC | 35 ms
52,744 KB |
testcase_04 | AC | 36 ms
52,800 KB |
testcase_05 | AC | 37 ms
52,544 KB |
testcase_06 | AC | 37 ms
52,532 KB |
testcase_07 | AC | 37 ms
53,916 KB |
testcase_08 | AC | 36 ms
53,232 KB |
testcase_09 | AC | 36 ms
52,272 KB |
testcase_10 | AC | 36 ms
53,016 KB |
testcase_11 | AC | 36 ms
52,692 KB |
testcase_12 | AC | 36 ms
53,180 KB |
testcase_13 | AC | 35 ms
53,268 KB |
testcase_14 | AC | 35 ms
52,984 KB |
testcase_15 | AC | 36 ms
52,496 KB |
testcase_16 | AC | 36 ms
52,964 KB |
testcase_17 | AC | 34 ms
53,380 KB |
testcase_18 | AC | 36 ms
53,232 KB |
testcase_19 | AC | 35 ms
52,748 KB |
testcase_20 | AC | 35 ms
53,504 KB |
testcase_21 | AC | 35 ms
53,504 KB |
testcase_22 | AC | 36 ms
52,528 KB |
testcase_23 | AC | 36 ms
52,956 KB |
testcase_24 | AC | 436 ms
215,260 KB |
testcase_25 | AC | 431 ms
214,768 KB |
testcase_26 | AC | 435 ms
214,684 KB |
testcase_27 | AC | 450 ms
214,588 KB |
testcase_28 | AC | 442 ms
214,900 KB |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
ソースコード
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=[] S=set() 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: S.add(I) L.append(I) D[I]=X X+=1 I+=1 Z=Union_Find(X) I=0 for y in range(W): for x in range(H): if I in S: if (I+1)%W: if I+1 in S: Q=D[I] Z.union(Q,Q+1) if I+W in S: Z.union(D[I],D[I+W]) I+=1 print(Z.group_count())