結果

問題 No.2696 Sign Creation
ユーザー mo124121mo124121
提出日時 2024-02-04 09:43:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 3,356 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 265,976 KB
最終ジャッジ日時 2024-05-17 18:08:51
合計ジャッジ時間 7,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
71,260 KB
testcase_01 AC 47 ms
55,172 KB
testcase_02 AC 71 ms
74,648 KB
testcase_03 AC 79 ms
76,888 KB
testcase_04 AC 71 ms
73,596 KB
testcase_05 AC 85 ms
76,780 KB
testcase_06 AC 55 ms
65,100 KB
testcase_07 AC 43 ms
55,248 KB
testcase_08 AC 1,714 ms
84,640 KB
testcase_09 AC 77 ms
76,716 KB
testcase_10 AC 250 ms
79,376 KB
testcase_11 AC 95 ms
77,172 KB
testcase_12 AC 97 ms
77,040 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(2 * 10**3)

if sys.implementation.name == "pypy":
    import pypyjit

    pypyjit.set_param("max_unroll_recursion=-1")


from collections import defaultdict


class UnionFind:
    def __init__(self, N):
        self.N = N
        self.parent_or_size = [-1] * N
        self.group_count = N

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

    def unite(self, x, y):
        root_x = self.root(x)
        root_y = self.root(y)
        if root_x == root_y:
            return
        if -self.parent_or_size[root_x] < -self.parent_or_size[root_y]:
            root_x, root_y = root_y, root_x
        self.parent_or_size[root_x] += self.parent_or_size[root_y]
        self.parent_or_size[root_y] = root_x
        self.group_count -= 1

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

    def size(self, x):
        return -self.parent_or_size[self.root(x)]

    def groups(self):
        ret = defaultdict(list)
        for i in range(self.N):
            ret[self.root(i)].append(i)
        return [group for group in ret.values()]


input = lambda: sys.stdin.readline().rstrip()

SHIFT = 20


def conv(x, y):
    return x << SHIFT | y


H, W, N, D = map(int, input().split())

star = {}
XY = []
for i in range(N):
    x, y = map(int, input().split())
    XY.append((x, y))
    star[conv(x, y)] = i

uf = UnionFind(N)

cand = []
for i, (x, y) in enumerate(XY):
    for xd in range(-D, D + 1):
        for yd in range(-D, D + 1):
            d = abs(xd) + abs(yd)
            if d > D:
                continue
            xn = x + xd
            yn = y + yd
            cand.append((xn, yn))
            posn = conv(xn, yn)
            if posn in star:
                uf.unite(i, star[posn])

stella = uf.groups()
is_seiza = [0] * N

count = 0
for block in stella:
    if len(block) > 1:
        count += 1
        for i in block:
            is_seiza[i] = 1

mi = count
ma = count

for x, y in cand:
    seen = set()
    for xd in range(-D, D + 1):
        for yd in range(-D, D + 1):
            d = abs(xd) + abs(yd)
            if d > D:
                continue
            xn = x + xd
            yn = y + yd
            posn = conv(xn, yn)
            if posn not in star:
                continue
            seen.add(uf.root(star[posn]))
    c = count + 1
    for s in seen:
        if is_seiza[s]:
            c -= 1
    mi = min(mi, c)
    ma = max(ma, c)
print(mi, ma)


"""
問題文
星座の定義をちゃんとした方がよさそう
「より厳密には、星を頂点、線を辺としたグラフを考えたときに、
含まれる頂点が2以上の連結部分を星座として定義します」 とか?ただやや風情に欠ける…

線1本のことを星座というのか、線で連なったものを星座というのか
(ただ連結という言葉は使いたくないし、相互で行き来可能とかいうとグラフ感でるし)

一応、は星の
星1個の場合を星座と呼ぶのかがわかりにくい、明言しておいた方がよさそう → 書いてある…


入力サンプル行末に改行が入ってなくて、コピペですぐ実行ができない

"""
0