結果

問題 No.2696 Sign Creation
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 10:46:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,044 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 79,816 KB
最終ジャッジ日時 2024-05-17 18:23:57
合計ジャッジ時間 7,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
59,220 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 59 ms
67,300 KB
testcase_12 AC 58 ms
66,832 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 114 ms
77,360 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 63 ms
69,364 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 173 ms
78,212 KB
testcase_28 AC 174 ms
77,984 KB
testcase_29 AC 142 ms
77,516 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 41 ms
59,720 KB
testcase_33 AC 44 ms
62,624 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 37 ms
53,764 KB
testcase_37 AC 36 ms
53,028 KB
testcase_38 AC 36 ms
52,868 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
    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