結果

問題 No.2696 Sign Creation
ユーザー ゼットゼット
提出日時 2024-03-22 23:15:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,271 ms / 2,500 ms
コード長 1,787 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 80,972 KB
最終ジャッジ日時 2024-05-17 18:19:24
合計ジャッジ時間 8,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,336 KB
testcase_01 AC 45 ms
60,900 KB
testcase_02 AC 39 ms
52,664 KB
testcase_03 AC 43 ms
60,260 KB
testcase_04 AC 40 ms
54,072 KB
testcase_05 AC 46 ms
59,044 KB
testcase_06 AC 38 ms
53,120 KB
testcase_07 AC 40 ms
54,436 KB
testcase_08 AC 131 ms
77,072 KB
testcase_09 AC 64 ms
69,076 KB
testcase_10 AC 130 ms
77,452 KB
testcase_11 AC 73 ms
73,804 KB
testcase_12 AC 72 ms
73,452 KB
testcase_13 AC 539 ms
79,316 KB
testcase_14 AC 296 ms
78,768 KB
testcase_15 AC 297 ms
78,540 KB
testcase_16 AC 518 ms
78,912 KB
testcase_17 AC 176 ms
77,260 KB
testcase_18 AC 204 ms
78,488 KB
testcase_19 AC 299 ms
78,972 KB
testcase_20 AC 98 ms
76,360 KB
testcase_21 AC 246 ms
79,060 KB
testcase_22 AC 243 ms
78,268 KB
testcase_23 AC 289 ms
79,556 KB
testcase_24 AC 298 ms
78,864 KB
testcase_25 AC 345 ms
78,332 KB
testcase_26 AC 207 ms
78,120 KB
testcase_27 AC 207 ms
78,144 KB
testcase_28 AC 182 ms
78,176 KB
testcase_29 AC 160 ms
77,236 KB
testcase_30 AC 194 ms
77,448 KB
testcase_31 AC 1,271 ms
80,972 KB
testcase_32 AC 43 ms
59,488 KB
testcase_33 AC 55 ms
66,000 KB
testcase_34 AC 48 ms
62,168 KB
testcase_35 AC 38 ms
52,840 KB
testcase_36 AC 38 ms
53,988 KB
testcase_37 AC 39 ms
54,432 KB
testcase_38 AC 39 ms
54,044 KB
testcase_39 AC 39 ms
54,244 KB
testcase_40 AC 38 ms
53,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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,W+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)
0