結果

問題 No.2696 Sign Creation
ユーザー ゼットゼット
提出日時 2024-03-22 22:26:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,767 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 105,620 KB
最終ジャッジ日時 2024-05-17 18:13:20
合計ジャッジ時間 12,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,644 KB
testcase_01 AC 44 ms
53,812 KB
testcase_02 AC 43 ms
53,388 KB
testcase_03 AC 50 ms
60,108 KB
testcase_04 AC 46 ms
53,980 KB
testcase_05 AC 49 ms
61,372 KB
testcase_06 AC 43 ms
53,388 KB
testcase_07 AC 43 ms
53,984 KB
testcase_08 AC 182 ms
78,224 KB
testcase_09 AC 65 ms
67,232 KB
testcase_10 AC 148 ms
77,728 KB
testcase_11 AC 63 ms
66,528 KB
testcase_12 AC 63 ms
66,416 KB
testcase_13 AC 976 ms
91,380 KB
testcase_14 AC 453 ms
91,216 KB
testcase_15 AC 428 ms
89,120 KB
testcase_16 AC 915 ms
88,184 KB
testcase_17 AC 77 ms
70,432 KB
testcase_18 AC 255 ms
81,168 KB
testcase_19 AC 477 ms
90,084 KB
testcase_20 AC 79 ms
71,436 KB
testcase_21 AC 374 ms
91,008 KB
testcase_22 AC 289 ms
81,220 KB
testcase_23 AC 436 ms
89,980 KB
testcase_24 AC 427 ms
89,284 KB
testcase_25 AC 580 ms
88,456 KB
testcase_26 AC 160 ms
77,836 KB
testcase_27 AC 315 ms
82,052 KB
testcase_28 AC 262 ms
84,104 KB
testcase_29 AC 90 ms
74,336 KB
testcase_30 AC 106 ms
76,748 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

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(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
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)
    h.append(count+r)
print(min(h),max(h))
0