結果
問題 | No.2696 Sign Creation |
ユーザー | tipstar0125 |
提出日時 | 2024-03-25 16:59:17 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,329 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,164 KB |
実行使用メモリ | 86,348 KB |
最終ジャッジ日時 | 2024-05-17 18:25:08 |
合計ジャッジ時間 | 4,594 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
56,452 KB |
testcase_01 | AC | 43 ms
56,796 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 56 ms
66,236 KB |
testcase_10 | RE | - |
testcase_11 | AC | 56 ms
65,876 KB |
testcase_12 | AC | 58 ms
65,740 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 83 ms
78,116 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 135 ms
84,408 KB |
testcase_31 | RE | - |
testcase_32 | AC | 44 ms
56,352 KB |
testcase_33 | AC | 46 ms
61,064 KB |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | AC | 44 ms
56,236 KB |
testcase_38 | AC | 40 ms
55,292 KB |
testcase_39 | RE | - |
testcase_40 | RE | - |
ソースコード
from collections import defaultdict,deque class UnionFind(): 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): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members H,W,N,D=map(int,input().split()) XY=[tuple(map(int,input().split())) for _ in range(N)] mp=[[N for _ in range(W)] for _ in range(H)] for (i,(x,y)) in enumerate(XY):mp[x][y]=i uf=UnionFind(N) INF=int(1e18) for (x,y) in XY: dist=[[INF for _ in range(W+1)] for _ in range(H+1)] dist[x][y]=0 Q=deque() Q.append((x,y)) while len(Q): i,j=Q.popleft() if dist[i][j]==D:continue for (di,dj) in [(1,0),(-1,0),(0,1),(0,-1)]: ni=i+di nj=j+dj if 1<=ni<=H and 1<=nj<=W: if dist[i][j]+1<dist[ni][nj]: dist[ni][nj]=dist[i][j]+1 Q.append((ni,nj)) if mp[ni][nj]!=N: uf.union(mp[x][y],mp[ni][nj]) cand=set() star=set() sign=set() star_cand=defaultdict(set) sign_cand=defaultdict(set) for (x,y) in XY: root=uf.find(mp[x][y]) size=uf.size(root) if size==1:star.add(root) else:sign.add(root) dist=[[INF for _ in range(W+1)] for _ in range(H+1)] dist[x][y]=0 Q=deque() Q.append((x,y)) while len(Q): i,j=Q.popleft() if dist[i][j]==D:continue for (di,dj) in [(1,0),(-1,0),(0,1),(0,-1)]: ni=i+di nj=j+dj if 1<=ni<=H and 1<=nj<=W: if dist[i][j]+1<dist[ni][nj]: dist[ni][nj]=dist[i][j]+1 Q.append((ni,nj)) if mp[ni][nj]==N: cand.add((ni,nj)) if size==1:star_cand[root].add((ni,nj)) else:sign_cand[root].add((ni,nj)) star_num=len(star) sign_num=len(sign) star_cand_cnt=defaultdict(int) sign_cand_cnt=defaultdict(int) for (k,v) in star_cand.items(): for x in v:star_cand_cnt[x]+=1 for (k,v) in sign_cand.items(): for x in v:sign_cand_cnt[x]+=1 inc=0 dec=0 for c in cand: if star_cand_cnt.get(c) is not None and sign_cand_cnt.get(c) is None:inc+=1 elif star_cand_cnt.get(c) is None and sign_cand_cnt.get(c) is not None:dec=max(dec,sign_cand_cnt[c]) mx=sign_num mn=sign_num if inc>0:mx+=1 if dec>0:mn-=dec-1 print(mn,mx)