結果

問題 No.2696 Sign Creation
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 10:47:37
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,067 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 79,804 KB
最終ジャッジ日時 2024-05-17 18:23:49
合計ジャッジ時間 8,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,304 KB
testcase_01 AC 41 ms
59,168 KB
testcase_02 AC 38 ms
52,596 KB
testcase_03 AC 43 ms
59,372 KB
testcase_04 AC 39 ms
53,544 KB
testcase_05 AC 44 ms
59,360 KB
testcase_06 AC 38 ms
53,196 KB
testcase_07 AC 38 ms
53,332 KB
testcase_08 AC 127 ms
77,148 KB
testcase_09 AC 54 ms
63,780 KB
testcase_10 AC 118 ms
77,460 KB
testcase_11 AC 63 ms
67,804 KB
testcase_12 AC 62 ms
66,752 KB
testcase_13 AC 572 ms
78,684 KB
testcase_14 AC 278 ms
78,860 KB
testcase_15 AC 270 ms
78,692 KB
testcase_16 AC 585 ms
78,236 KB
testcase_17 AC 128 ms
77,468 KB
testcase_18 AC 174 ms
78,668 KB
testcase_19 AC 283 ms
78,660 KB
testcase_20 AC 68 ms
69,864 KB
testcase_21 AC 237 ms
79,612 KB
testcase_22 AC 200 ms
78,396 KB
testcase_23 AC 259 ms
79,120 KB
testcase_24 AC 254 ms
78,864 KB
testcase_25 AC 327 ms
78,492 KB
testcase_26 AC 156 ms
77,732 KB
testcase_27 AC 192 ms
77,804 KB
testcase_28 AC 194 ms
78,156 KB
testcase_29 AC 157 ms
77,268 KB
testcase_30 AC 153 ms
77,220 KB
testcase_31 AC 1,945 ms
79,804 KB
testcase_32 AC 43 ms
58,856 KB
testcase_33 AC 48 ms
62,428 KB
testcase_34 AC 45 ms
60,356 KB
testcase_35 AC 38 ms
54,140 KB
testcase_36 AC 37 ms
53,488 KB
testcase_37 AC 38 ms
53,340 KB
testcase_38 AC 38 ms
54,080 KB
testcase_39 WA -
testcase_40 AC 38 ms
53,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,n,d=map(int,input().split())
a=[[-1]*w for i in range(h)]
r=list(range(n))
v=[1]*n

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]
  v[ry]=0
  return

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

dxdy=[]
for dx in range(-d,d+1):
	for dy in range(-d,d+1):
		if 1<=abs(dx)+abs(dy)<=d:
			dxdy+=[(dx,dy)]
for i in range(n):
	x,y=map(int,input().split())
	x-=1
	y-=1
	a[x][y]=i
for x in range(h):
	for y in range(w):
		if a[x][y]!=-1:
			for dx,dy in dxdy:
				xx=x+dx
				yy=y+dy
				if 0<=xx<h and 0<=yy<w and a[xx][yy]!=-1:
					union(a[x][y],a[xx][yy])
g0=len(set([r[i] for i in range(n) if v[i]>1]))
g1=g0
g2=0
f=0
for x in range(h):
	for y in range(w):
		if a[x][y]==-1:
			rr=set()
			for dx,dy in dxdy:
				xx=x+dx
				yy=y+dy
				if 0<=xx<h and 0<=yy<w and a[xx][yy]!=-1:
					ra=root(a[xx][yy])
					if v[ra]>1:
						rr.add(ra)
					else:
						f|=1
			ll=len(rr)
			if ll>0:
				g2=min(g2,-ll+1)
print(g0+g2,g1+f)
0