結果

問題 No.2696 Sign Creation
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-02 13:36:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,236 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,156 KB
最終ジャッジ日時 2024-10-02 13:36:58
合計ジャッジ時間 16,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,872 KB
testcase_01 AC 50 ms
62,208 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 57 ms
63,488 KB
testcase_04 AC 50 ms
61,184 KB
testcase_05 AC 52 ms
62,208 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 172 ms
77,896 KB
testcase_09 WA -
testcase_10 AC 149 ms
77,740 KB
testcase_11 AC 104 ms
76,800 KB
testcase_12 AC 103 ms
76,808 KB
testcase_13 AC 1,440 ms
85,784 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,363 ms
83,200 KB
testcase_17 AC 370 ms
82,108 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 132 ms
77,112 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 497 ms
92,156 KB
testcase_28 WA -
testcase_29 AC 403 ms
82,408 KB
testcase_30 WA -
testcase_31 AC 1,852 ms
81,148 KB
testcase_32 AC 54 ms
63,348 KB
testcase_33 AC 93 ms
76,320 KB
testcase_34 AC 63 ms
68,480 KB
testcase_35 AC 39 ms
52,352 KB
testcase_36 AC 40 ms
52,608 KB
testcase_37 AC 39 ms
52,864 KB
testcase_38 AC 39 ms
52,352 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

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 dx+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 dx+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 dx+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