結果

問題 No.2696 Sign Creation
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 05:06:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 948 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 90,316 KB
最終ジャッジ日時 2024-05-17 18:22:39
合計ジャッジ時間 8,930 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 34 ms
53,264 KB
testcase_03 AC 41 ms
60,328 KB
testcase_04 AC 41 ms
61,500 KB
testcase_05 AC 40 ms
59,900 KB
testcase_06 AC 37 ms
54,716 KB
testcase_07 WA -
testcase_08 AC 140 ms
78,076 KB
testcase_09 WA -
testcase_10 AC 135 ms
78,216 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 536 ms
83,208 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 472 ms
82,144 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1,123 ms
90,316 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 35 ms
52,952 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def union(x,y):
  rx=root(x)
  ry=root(y)
  if rx>ry:
    rx,ry=ry,rx
  r[ry]=rx
  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]

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