結果

問題 No.2696 Sign Creation
ユーザー timitimi
提出日時 2024-02-03 04:15:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 338 ms / 2,500 ms
コード長 1,501 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,972 KB
実行使用メモリ 83,272 KB
最終ジャッジ日時 2024-12-20 11:47:59
合計ジャッジ時間 7,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,924 KB
testcase_01 AC 47 ms
60,272 KB
testcase_02 AC 38 ms
53,192 KB
testcase_03 AC 45 ms
60,228 KB
testcase_04 AC 42 ms
53,144 KB
testcase_05 AC 45 ms
58,292 KB
testcase_06 AC 40 ms
54,248 KB
testcase_07 AC 40 ms
53,820 KB
testcase_08 AC 106 ms
76,428 KB
testcase_09 AC 56 ms
65,084 KB
testcase_10 AC 113 ms
77,440 KB
testcase_11 AC 65 ms
67,504 KB
testcase_12 AC 67 ms
67,580 KB
testcase_13 AC 338 ms
81,840 KB
testcase_14 AC 263 ms
82,528 KB
testcase_15 AC 238 ms
81,572 KB
testcase_16 AC 309 ms
80,352 KB
testcase_17 AC 158 ms
80,564 KB
testcase_18 AC 173 ms
82,664 KB
testcase_19 AC 241 ms
83,068 KB
testcase_20 AC 79 ms
70,248 KB
testcase_21 AC 247 ms
82,220 KB
testcase_22 AC 225 ms
83,100 KB
testcase_23 AC 255 ms
82,504 KB
testcase_24 AC 260 ms
83,176 KB
testcase_25 AC 266 ms
82,644 KB
testcase_26 AC 174 ms
83,272 KB
testcase_27 AC 209 ms
81,840 KB
testcase_28 AC 181 ms
82,820 KB
testcase_29 AC 160 ms
80,572 KB
testcase_30 AC 171 ms
80,684 KB
testcase_31 AC 292 ms
80,264 KB
testcase_32 AC 45 ms
60,160 KB
testcase_33 AC 54 ms
64,484 KB
testcase_34 AC 50 ms
61,312 KB
testcase_35 AC 41 ms
53,236 KB
testcase_36 AC 41 ms
53,136 KB
testcase_37 AC 40 ms
54,404 KB
testcase_38 AC 40 ms
53,232 KB
testcase_39 AC 42 ms
54,112 KB
testcase_40 AC 40 ms
52,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,N,D=map(int, input().split())
A=[[-1]*W for _ in range(H)]

for i in range(N):
  h,w=map(int, input().split())
  h-=1;w-=1
  A[h][w]=i
  
B=[]
for i in range(-D,D+1):
  for j in range(-D,D+1):
    if abs(i)+abs(j)<=D:
      B.append((i,j))
      
par=[i for i in range(N)];rank=[0]*N;size=[1]*N
def find(x):
  if par[x]==x:
    return x
  else:
    par[x]=find(par[x])
    return par[x]
 
#同じ集合か判定
def same(x,y):
  return find(x)==find(y)
 
def union(x,y):
  x=find(x)
  y=find(y)
  if x==y:
    return 
  if rank[x]>rank[y]:
    par[y]=x
    size[x]+=size[y]
  else:
    par[x]=y
    size[y]+=size[x]
    if rank[x]==rank[y]:
      rank[y]+=1
 
for h in range(H):
  for w in range(W):
    if A[h][w]==-1:
      continue 
    p=A[h][w]
    for x,y in B:
      nh,nw=h+x,w+y
      if 0<=nh<H and 0<=nw<W and A[nh][nw]!=-1:
        q=A[nh][nw]
        union(p,q)
        
D={};E={};F={}
for i in range(N):
  d=find(i)
  if d not in F:
    F[d]=1
    if size[d]==1:
      D[d]=1
    else:
      E[d]=1
      
al=len(E);ans=[]
for h in range(H):
  for w in range(W):
    if A[h][w]!=-1:
      continue
    DD,EE=set(),set()
    for x,y in B:
      nh,nw=h+x,w+y
      if 0<=nh<H and 0<=nw<W and A[nh][nw]!=-1:
        q=find(A[nh][nw])
        if size[q]==1:
          EE.add(q)
        else:
          DD.add(q)
    if len(EE)==0:
      if len(DD)==0:
        ans.append(al)
      else:
        ans.append(al-len(DD)+1)
    else:
      ans.append(al-len(DD)+1)

print(min(ans),max(ans))
0