結果

問題 No.2696 Sign Creation
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 05:16:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,152 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 68,260 KB
最終ジャッジ日時 2024-03-23 05:16:59
合計ジャッジ時間 4,176 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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