結果

問題 No.2696 Sign Creation
ユーザー ゼットゼット
提出日時 2024-03-22 22:31:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,897 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 100,968 KB
最終ジャッジ日時 2024-05-17 18:14:11
合計ジャッジ時間 11,894 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,004 KB
testcase_01 AC 41 ms
53,880 KB
testcase_02 AC 39 ms
53,696 KB
testcase_03 AC 44 ms
60,016 KB
testcase_04 AC 40 ms
53,528 KB
testcase_05 AC 45 ms
60,440 KB
testcase_06 AC 40 ms
54,248 KB
testcase_07 AC 43 ms
53,540 KB
testcase_08 AC 156 ms
77,500 KB
testcase_09 AC 63 ms
67,968 KB
testcase_10 AC 149 ms
77,412 KB
testcase_11 AC 59 ms
67,844 KB
testcase_12 AC 58 ms
66,200 KB
testcase_13 AC 886 ms
88,660 KB
testcase_14 AC 417 ms
88,048 KB
testcase_15 AC 389 ms
85,664 KB
testcase_16 AC 796 ms
85,472 KB
testcase_17 AC 69 ms
70,384 KB
testcase_18 AC 250 ms
79,764 KB
testcase_19 AC 441 ms
87,000 KB
testcase_20 AC 72 ms
72,028 KB
testcase_21 AC 314 ms
87,424 KB
testcase_22 AC 281 ms
78,816 KB
testcase_23 AC 386 ms
86,544 KB
testcase_24 AC 360 ms
85,732 KB
testcase_25 AC 510 ms
85,060 KB
testcase_26 AC 162 ms
77,768 KB
testcase_27 AC 308 ms
79,328 KB
testcase_28 AC 245 ms
80,240 KB
testcase_29 AC 78 ms
73,404 KB
testcase_30 AC 97 ms
76,656 KB
testcase_31 TLE -
testcase_32 AC 39 ms
54,056 KB
testcase_33 AC 40 ms
54,828 KB
testcase_34 AC 51 ms
63,444 KB
testcase_35 AC 39 ms
53,952 KB
testcase_36 AC 39 ms
54,124 KB
testcase_37 AC 39 ms
53,584 KB
testcase_38 AC 40 ms
54,172 KB
testcase_39 AC 40 ms
54,464 KB
testcase_40 AC 40 ms
53,024 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(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:
    ans1=min(ans1,count)
    ans2=max(ans2,count)
  for y in A[x]:
    w=x*10**10+y
    if w in T:
      continue
    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)
0