結果

問題 No.2696 Sign Creation
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-02 13:43:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,584 ms / 2,500 ms
コード長 1,266 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 93,704 KB
最終ジャッジ日時 2024-10-02 13:43:37
合計ジャッジ時間 16,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
64,640 KB
testcase_01 AC 56 ms
64,384 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 54 ms
63,488 KB
testcase_04 AC 47 ms
59,648 KB
testcase_05 AC 53 ms
62,336 KB
testcase_06 AC 40 ms
53,120 KB
testcase_07 AC 44 ms
52,864 KB
testcase_08 AC 195 ms
78,380 KB
testcase_09 AC 149 ms
77,056 KB
testcase_10 AC 219 ms
79,032 KB
testcase_11 AC 128 ms
76,524 KB
testcase_12 AC 129 ms
76,648 KB
testcase_13 AC 1,366 ms
86,460 KB
testcase_14 AC 602 ms
85,840 KB
testcase_15 AC 556 ms
83,704 KB
testcase_16 AC 1,236 ms
84,980 KB
testcase_17 AC 444 ms
81,664 KB
testcase_18 AC 419 ms
86,016 KB
testcase_19 AC 715 ms
87,852 KB
testcase_20 AC 186 ms
77,440 KB
testcase_21 AC 433 ms
83,148 KB
testcase_22 AC 611 ms
88,132 KB
testcase_23 AC 527 ms
86,820 KB
testcase_24 AC 571 ms
86,744 KB
testcase_25 AC 890 ms
87,304 KB
testcase_26 AC 570 ms
85,252 KB
testcase_27 AC 639 ms
90,692 KB
testcase_28 AC 489 ms
93,704 KB
testcase_29 AC 532 ms
83,908 KB
testcase_30 AC 548 ms
84,020 KB
testcase_31 AC 1,584 ms
83,216 KB
testcase_32 AC 62 ms
66,432 KB
testcase_33 AC 121 ms
76,568 KB
testcase_34 AC 69 ms
67,712 KB
testcase_35 AC 40 ms
52,352 KB
testcase_36 AC 41 ms
52,480 KB
testcase_37 AC 41 ms
52,352 KB
testcase_38 AC 40 ms
52,480 KB
testcase_39 AC 43 ms
52,224 KB
testcase_40 AC 42 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def root(x):
  p=x
  l=[p]
  while r[p]!=p:
    p=r[p]
    l+=[p]
  for p in l:
    r[p]=l[-1]
  return r[x]

def union(x,y):
  rx=root(x)
  ry=root(y)
  if rx==ry:
    return
  if rx>ry:
    rx,ry=ry,rx
  r[ry]=rx
  v[rx]+=v[ry]
  return

h,w,n,d=map(int,input().split())
s=[[0]*w for i in range(h)]
r=list(range(h*w))
v=[1]*h*w
for i in range(n):
  x,y=map(int,input().split())
  x-=1
  y-=1
  for dx in range(-d,d+1):
    for dy in range(-d,d+1):
      xx,yy=x+dx,y+dy
      if abs(dx)+abs(dy)<=d and 0<=xx<h and 0<=yy<w and s[xx][yy]:
        union(x*w+y,xx*w+yy)
  s[x][y]=1
C=sum(s[i//w][i%w] and root(i)==i and v[i]>1 for i in range(h*w))
a=[]
for x in range(h):
  for y in range(w):
    if s[x][y]:
      continue
    p=set()
    for dx in range(-d,d+1):
      for dy in range(-d,d+1):
        xx,yy=x+dx,y+dy
        if abs(dx)+abs(dy)<=d and 0<=xx<h and 0<=yy<w and s[xx][yy] and v[root(xx*w+yy)]>1:
          p.add(root(xx*w+yy))
    c=len(p)
    a+=[C-c+1 if c>0 else C]
    p=set()
    for dx in range(-d,d+1):
      for dy in range(-d,d+1):
        xx,yy=x+dx,y+dy
        if abs(dx)+abs(dy)<=d and 0<=xx<h and 0<=yy<w and s[xx][yy]:
          p.add(v[root(xx*w+yy)])
    if len(p)>0 and all(i==1 for i in p):
      a+=[C+1]
a2=C+c
print(min(a),max(a))
0