結果
問題 | No.2696 Sign Creation |
ユーザー | ゼット |
提出日時 | 2024-03-22 22:27:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,820 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,616 KB |
実行使用メモリ | 107,772 KB |
最終ジャッジ日時 | 2024-05-17 18:13:39 |
合計ジャッジ時間 | 11,850 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
60,892 KB |
testcase_01 | WA | - |
testcase_02 | AC | 39 ms
53,748 KB |
testcase_03 | AC | 43 ms
60,280 KB |
testcase_04 | AC | 43 ms
54,664 KB |
testcase_05 | AC | 45 ms
59,752 KB |
testcase_06 | AC | 44 ms
53,400 KB |
testcase_07 | AC | 40 ms
54,484 KB |
testcase_08 | AC | 176 ms
78,124 KB |
testcase_09 | AC | 61 ms
67,012 KB |
testcase_10 | AC | 144 ms
77,656 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 941 ms
88,660 KB |
testcase_14 | AC | 432 ms
87,932 KB |
testcase_15 | AC | 409 ms
85,780 KB |
testcase_16 | AC | 883 ms
85,624 KB |
testcase_17 | WA | - |
testcase_18 | AC | 240 ms
79,624 KB |
testcase_19 | AC | 448 ms
86,628 KB |
testcase_20 | WA | - |
testcase_21 | AC | 328 ms
87,412 KB |
testcase_22 | AC | 270 ms
78,804 KB |
testcase_23 | AC | 378 ms
86,252 KB |
testcase_24 | AC | 379 ms
86,060 KB |
testcase_25 | AC | 545 ms
85,132 KB |
testcase_26 | AC | 156 ms
77,532 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 92 ms
76,376 KB |
testcase_31 | TLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
class unif: def __init__(self,n): self.pare=[-1]*n self.size=[1]*n def root(self,x): while self.pare[x]!=-1: x=self.pare[x] return x def unite(self,u,v): rootu=self.root(u) rootv=self.root(v) if rootu!=rootv: if self.size[rootu]>=self.size[rootv]: self.pare[rootv]=rootu self.size[rootu]+=self.size[rootv] else: self.pare[rootu]=rootv self.size[rootv]+=self.size[rootu] def same(self,s,t): return self.root(s)==self.root(t) H,W,N,D=map(int,input().split()) C=set() A=[set() for i in range(H+1)] T={} L=[] for i in range(N): x,y=map(int,input().split()) L.append((x,y)) T[x*10**10+y]=i Z=unif(N) for i in range(N): x,y=L[i][:] for dx in range(-D,D+1): k=D-abs(dx) for dy in range(-k,k+1): x2,y2=x+dx,y+dy if x==x2 and y==y2: continue if x2<=0 or x2>=H+1 or y2<=0 or y2>=W+1: continue A[x2].add(y2) w=x2*10**10+y2 if w in T: pos=T[w] Z.unite(i,pos) count=0 b=set() for i in range(N): p=Z.root(i) if Z.size[p]>1: b.add(p) count=len(b) h=[] u=[0]*N t=[0]*N for i in range(N): p=Z.root(i) k=Z.size[p] u[i]=p t[i]=k ans1=10**10 ans2=-10**10 for x in range(1,H+1): if len(A[x])!=W: h.append(count) for y in A[x]: c=0 B=set() for dx in range(-D,D+1): k=D-abs(dx) for dy in range(-k,k+1): x2,y2=x+dx,y+dy if x==x2 and y==y2: continue if x2<=0 or x2>=H+1 or y2<=0 or y2>=W+1: continue w=x2*10**10+y2 if w in T: pos=T[w] if t[pos]==1: c=1 else: B.add(u[pos]) if c==1 and len(B)==0: r=1 else: r=1-len(B) ans1=min(ans1,r+count) ans2=max(ans2,r+count) print(ans1,ans2)