結果

問題 No.2696 Sign Creation
ユーザー nikoro256nikoro256
提出日時 2024-03-22 23:15:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,577 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 115,156 KB
最終ジャッジ日時 2024-05-17 18:19:35
合計ジャッジ時間 16,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
70,944 KB
testcase_01 AC 51 ms
63,800 KB
testcase_02 AC 42 ms
54,932 KB
testcase_03 AC 51 ms
65,060 KB
testcase_04 AC 51 ms
62,944 KB
testcase_05 AC 55 ms
65,556 KB
testcase_06 AC 43 ms
56,188 KB
testcase_07 AC 43 ms
56,124 KB
testcase_08 AC 186 ms
79,208 KB
testcase_09 AC 100 ms
76,796 KB
testcase_10 AC 148 ms
77,836 KB
testcase_11 AC 97 ms
76,608 KB
testcase_12 AC 95 ms
77,164 KB
testcase_13 AC 1,256 ms
87,948 KB
testcase_14 AC 564 ms
88,388 KB
testcase_15 AC 536 ms
88,064 KB
testcase_16 AC 1,269 ms
88,180 KB
testcase_17 AC 449 ms
77,200 KB
testcase_18 AC 306 ms
78,956 KB
testcase_19 AC 621 ms
83,592 KB
testcase_20 AC 144 ms
76,916 KB
testcase_21 AC 493 ms
94,372 KB
testcase_22 AC 523 ms
78,612 KB
testcase_23 AC 496 ms
85,760 KB
testcase_24 AC 519 ms
85,908 KB
testcase_25 AC 705 ms
82,764 KB
testcase_26 AC 487 ms
78,440 KB
testcase_27 AC 491 ms
77,780 KB
testcase_28 AC 372 ms
78,292 KB
testcase_29 AC 466 ms
77,416 KB
testcase_30 AC 455 ms
78,212 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())
    

import sys
input=sys.stdin.readline
H,W,N,D=map(int,input().split())
dat=[]
datset=set()
dic={}
uf=UnionFind(N)
for i in range(N):
    x,y=map(int,input().split())
    x-=1
    y-=1
    dat.append((x,y))
    datset.add((x,y))
    dic[(x,y)]=i
for x,y in dat:
    for i in range(-D,D+1):
        for j in range(-D,D+1):
            if abs(i)+abs(j)>D:
                continue
            if (x+i,y+j) in datset:
                uf.union(dic[(x,y)],dic[(x+i,y+j)])
small=10**9
big=-10**9
for i in range(H):
    for j in range(W):
        use=set()
        for k in range(-D,D+1):
            for t in range(-D,D+1):
                if abs(k)+abs(t)>D:
                    continue
                tmp=(i+k,j+t)
                if tmp in datset:
                    use.add(uf.find(dic[tmp]))
        flag=False
        one=0
        notone=0
        tmp=0
        for u in use:
            if uf.size(u)==1:
                one+=1
            else:
                notone+=1
        if notone==0:
            if one>0:
                tmp+=1
        else:
            tmp=-(notone-1)
        big=max(big,tmp)
        small=min(small,tmp)
all=0
#print(small,big)
for idx,lis in uf.all_group_members().items():
    if len(lis)>1:
        all+=1
#print(all)
print(all+small,all+big)
0