結果

問題 No.2696 Sign Creation
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 05:39:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,104 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 112,192 KB
最終ジャッジ日時 2024-05-17 18:23:19
合計ジャッジ時間 10,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
67,052 KB
testcase_01 AC 42 ms
60,168 KB
testcase_02 AC 36 ms
53,944 KB
testcase_03 AC 41 ms
59,820 KB
testcase_04 AC 39 ms
53,016 KB
testcase_05 AC 42 ms
58,780 KB
testcase_06 AC 38 ms
52,836 KB
testcase_07 AC 39 ms
54,216 KB
testcase_08 AC 127 ms
76,956 KB
testcase_09 AC 54 ms
64,456 KB
testcase_10 AC 116 ms
77,396 KB
testcase_11 AC 55 ms
64,140 KB
testcase_12 AC 54 ms
63,492 KB
testcase_13 AC 1,064 ms
85,492 KB
testcase_14 AC 246 ms
82,064 KB
testcase_15 AC 252 ms
81,536 KB
testcase_16 AC 1,531 ms
88,796 KB
testcase_17 AC 102 ms
72,492 KB
testcase_18 AC 140 ms
78,388 KB
testcase_19 AC 248 ms
80,540 KB
testcase_20 AC 62 ms
65,804 KB
testcase_21 AC 199 ms
82,112 KB
testcase_22 AC 162 ms
78,412 KB
testcase_23 AC 232 ms
81,164 KB
testcase_24 AC 223 ms
81,680 KB
testcase_25 AC 291 ms
80,604 KB
testcase_26 AC 144 ms
77,472 KB
testcase_27 AC 159 ms
77,776 KB
testcase_28 AC 157 ms
77,776 KB
testcase_29 AC 136 ms
73,544 KB
testcase_30 AC 140 ms
76,980 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

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 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
	s+=[(x,y)]
	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(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
z=[0]*n
for x in range(h):
	for y in range(w):
		if a[x][y]==-1:
			rr=[]
			f=0
			for dx,dy in dxdy:
				xx=x+dx
				yy=y+dy
				if 0<=xx<h and 0<=yy<w and a[xx][yy]!=-1:
					if v[a[xx][yy]]>1:
						rr+=[a[xx][yy]]
						z[a[xx][yy]]=1
					else:
						f=1
			c=0
			for rrr in rr:
				c+=z[rrr]
				z[rrr]=0
			if c==0:
				g1=max(g1,g0+f)
			else:
				g2=min(g2,g0-c+1)
print(g2,g1)
0