結果
問題 | No.2696 Sign Creation |
ユーザー | ゼット |
提出日時 | 2024-03-22 23:14:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,787 bytes |
コンパイル時間 | 240 ms |
コンパイル使用メモリ | 82,596 KB |
実行使用メモリ | 80,808 KB |
最終ジャッジ日時 | 2024-05-17 18:19:14 |
合計ジャッジ時間 | 7,252 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
60,976 KB |
testcase_01 | AC | 44 ms
61,216 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | AC | 41 ms
54,484 KB |
testcase_05 | AC | 40 ms
54,308 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 125 ms
77,112 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 271 ms
78,752 KB |
testcase_16 | AC | 347 ms
78,704 KB |
testcase_17 | RE | - |
testcase_18 | AC | 188 ms
78,740 KB |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | AC | 289 ms
79,300 KB |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | AC | 105 ms
77,352 KB |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | AC | 44 ms
59,456 KB |
testcase_33 | AC | 55 ms
65,420 KB |
testcase_34 | WA | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | AC | 38 ms
53,404 KB |
testcase_38 | RE | - |
testcase_39 | AC | 38 ms
53,668 KB |
testcase_40 | AC | 38 ms
54,608 KB |
ソースコード
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() v=[[-1]*(W+1) for i in range(H+1)] for i in range(N): x,y=map(int,input().split()) v[x][y]=i Z=unif(N) for x in range(1,H+1): for y in range(1,W+1): if v[x][y]==-1: continue 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 x2<=0 or x2>=H+1 or y2<=0 or y2>W: continue pos=v[x2][y2] if pos>=0: Z.unite(v[x][y],pos) b=set() for i in range(N): p=Z.root(i) if Z.size[p]>1: b.add(p) count=len(b) ans1=10**10 ans2=-10**10 for x in range(1,H+1): for y in range(1,H+1): if v[x][y]>=0: continue c=0 k=set() for dx in range(-D,D+1): k2=D-abs(dx) for dy in range(-k2,k2+1): x2,y2=x+dx,y+dy if x2<=0 or x2>=H+1 or y2<=0 or y2>W: continue pos=v[x2][y2] if pos>=0: l=Z.root(pos) if Z.size[l]>1: k.add(l) else: c=1 if c==0: if len(k)==0: ans1=min(ans1,count) ans2=max(ans2,count) else: ans1=min(ans1,count+1-len(k)) ans2=max(ans2,count+1-len(k)) else: ans1=min(ans1,count+1-len(k)) ans2=max(ans2,count+1-len(k)) print(ans1,ans2)