結果
問題 | No.697 池の数はいくつか |
ユーザー | vwxyz |
提出日時 | 2022-01-05 07:28:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,741 bytes |
コンパイル時間 | 99 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 52,824 KB |
最終ジャッジ日時 | 2024-05-04 07:31:04 |
合計ジャッジ時間 | 16,649 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
11,008 KB |
testcase_01 | WA | - |
testcase_02 | AC | 25 ms
11,008 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 26 ms
10,880 KB |
testcase_06 | AC | 25 ms
11,008 KB |
testcase_07 | WA | - |
testcase_08 | AC | 27 ms
11,008 KB |
testcase_09 | AC | 27 ms
11,008 KB |
testcase_10 | WA | - |
testcase_11 | AC | 26 ms
11,008 KB |
testcase_12 | AC | 26 ms
10,880 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 27 ms
11,008 KB |
testcase_16 | AC | 27 ms
11,008 KB |
testcase_17 | AC | 31 ms
11,136 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 25 ms
10,880 KB |
testcase_21 | AC | 27 ms
11,008 KB |
testcase_22 | AC | 26 ms
10,880 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | TLE | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
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())) for h in range(H)] UF=UnionFind(H*W) for h in range(H-1): for w in range(W): if h!=H-1 and A[h][w] and A[h+1][w]: UF.Union(h*W+w,(h+1)*W+w) if w!=W-1 and 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)