結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
65,920 KB
testcase_01 AC 42 ms
59,468 KB
testcase_02 AC 40 ms
53,204 KB
testcase_03 AC 42 ms
59,196 KB
testcase_04 AC 38 ms
53,500 KB
testcase_05 AC 44 ms
59,628 KB
testcase_06 AC 39 ms
53,208 KB
testcase_07 AC 40 ms
54,060 KB
testcase_08 AC 125 ms
77,232 KB
testcase_09 AC 54 ms
63,896 KB
testcase_10 AC 115 ms
77,424 KB
testcase_11 AC 56 ms
65,688 KB
testcase_12 AC 57 ms
65,076 KB
testcase_13 AC 1,039 ms
85,256 KB
testcase_14 AC 252 ms
81,460 KB
testcase_15 AC 254 ms
81,340 KB
testcase_16 AC 1,514 ms
88,416 KB
testcase_17 AC 105 ms
74,628 KB
testcase_18 AC 137 ms
78,524 KB
testcase_19 AC 240 ms
79,864 KB
testcase_20 AC 64 ms
65,512 KB
testcase_21 AC 198 ms
81,708 KB
testcase_22 AC 159 ms
78,388 KB
testcase_23 AC 241 ms
80,612 KB
testcase_24 AC 218 ms
80,756 KB
testcase_25 AC 268 ms
80,072 KB
testcase_26 AC 133 ms
77,556 KB
testcase_27 AC 161 ms
77,876 KB
testcase_28 AC 159 ms
78,352 KB
testcase_29 AC 137 ms
74,092 KB
testcase_30 AC 134 ms
76,892 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=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:
					if v[a[xx][yy]]>1:
						rr.add(a[xx][yy])
					else:
						f|=1
			ll=len(rr)
			if ll>0:
				g2=min(g2,-ll+1)
print(g0+g2,g1+f)
0