結果

問題 No.2696 Sign Creation
ユーザー ゼットゼット
提出日時 2024-03-22 22:21:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,716 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,636 KB
実行使用メモリ 106,916 KB
最終ジャッジ日時 2024-05-17 18:12:42
合計ジャッジ時間 11,778 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,856 KB
testcase_01 AC 34 ms
52,908 KB
testcase_02 AC 34 ms
53,372 KB
testcase_03 AC 38 ms
59,492 KB
testcase_04 AC 37 ms
54,932 KB
testcase_05 AC 40 ms
60,720 KB
testcase_06 AC 37 ms
54,744 KB
testcase_07 AC 38 ms
53,608 KB
testcase_08 AC 168 ms
77,880 KB
testcase_09 AC 56 ms
68,188 KB
testcase_10 AC 133 ms
77,892 KB
testcase_11 AC 56 ms
66,536 KB
testcase_12 AC 54 ms
66,076 KB
testcase_13 AC 1,016 ms
94,444 KB
testcase_14 AC 413 ms
92,884 KB
testcase_15 AC 399 ms
89,136 KB
testcase_16 AC 870 ms
90,352 KB
testcase_17 AC 61 ms
70,368 KB
testcase_18 AC 220 ms
81,516 KB
testcase_19 AC 445 ms
92,292 KB
testcase_20 AC 64 ms
71,300 KB
testcase_21 AC 304 ms
89,972 KB
testcase_22 AC 265 ms
81,248 KB
testcase_23 AC 375 ms
89,968 KB
testcase_24 AC 376 ms
89,540 KB
testcase_25 AC 550 ms
91,468 KB
testcase_26 AC 144 ms
77,852 KB
testcase_27 AC 277 ms
82,100 KB
testcase_28 AC 229 ms
83,876 KB
testcase_29 AC 72 ms
74,764 KB
testcase_30 AC 93 ms
77,072 KB
testcase_31 TLE -
testcase_32 AC 37 ms
54,044 KB
testcase_33 AC 37 ms
54,240 KB
testcase_34 AC 52 ms
66,360 KB
testcase_35 AC 35 ms
53,548 KB
testcase_36 AC 34 ms
53,148 KB
testcase_37 AC 36 ms
54,328 KB
testcase_38 AC 36 ms
53,592 KB
testcase_39 AC 34 ms
53,632 KB
testcase_40 AC 37 ms
53,928 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()
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(Z.root(i))
count=len(b)
h=[]
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]
          p=Z.root(pos)
          if Z.size[p]==1:
            c=1
          else:
            B.add(p)
    if c==1 and len(B)==0:
      r=1
    else:
      r=1-len(B)
    h.append(count+r)
print(min(h),max(h))
0