結果

問題 No.2696 Sign Creation
ユーザー rlangevinrlangevin
提出日時 2024-03-22 22:29:37
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,413 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 82,204 KB
最終ジャッジ日時 2024-03-27 16:47:54
合計ジャッジ時間 6,794 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,848 KB
testcase_01 AC 43 ms
59,848 KB
testcase_02 AC 38 ms
53,460 KB
testcase_03 AC 42 ms
59,464 KB
testcase_04 AC 38 ms
53,460 KB
testcase_05 AC 41 ms
59,464 KB
testcase_06 AC 37 ms
53,460 KB
testcase_07 AC 36 ms
53,460 KB
testcase_08 AC 99 ms
76,340 KB
testcase_09 AC 54 ms
64,184 KB
testcase_10 AC 107 ms
76,372 KB
testcase_11 AC 60 ms
66,396 KB
testcase_12 AC 59 ms
66,396 KB
testcase_13 AC 357 ms
79,464 KB
testcase_14 AC 314 ms
79,864 KB
testcase_15 AC 288 ms
79,772 KB
testcase_16 AC 324 ms
79,144 KB
testcase_17 AC 124 ms
76,448 KB
testcase_18 AC 151 ms
77,612 KB
testcase_19 AC 280 ms
79,404 KB
testcase_20 AC 72 ms
70,552 KB
testcase_21 AC 294 ms
80,292 KB
testcase_22 AC 220 ms
77,764 KB
testcase_23 AC 283 ms
79,692 KB
testcase_24 AC 290 ms
79,768 KB
testcase_25 AC 258 ms
78,876 KB
testcase_26 AC 155 ms
76,868 KB
testcase_27 AC 181 ms
77,132 KB
testcase_28 AC 154 ms
77,116 KB
testcase_29 AC 123 ms
76,360 KB
testcase_30 AC 154 ms
76,732 KB
testcase_31 AC 541 ms
82,204 KB
testcase_32 AC 42 ms
59,464 KB
testcase_33 AC 52 ms
64,188 KB
testcase_34 AC 46 ms
61,840 KB
testcase_35 AC 38 ms
53,460 KB
testcase_36 AC 38 ms
53,460 KB
testcase_37 AC 37 ms
53,460 KB
testcase_38 AC 37 ms
53,460 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind():
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]


H, W, N, D = map(int, input().split())
X, Y = [0] * N, [0] * N
U = UnionFind(N)
SS = [[-1] * (W + 1) for _ in range(H + 1)]
for i in range(N):
    X[i], Y[i] = map(int, input().split())
    X[i], Y[i] = X[i] - 1, Y[i] - 1
    SS[X[i]][Y[i]] = i
    
L = []
for a in range(-D, D + 1):
    for b in range(-D, D + 1):
        if abs(a) + abs(b) > D:
            continue
        L.append((a, b))
    
for i in range(N):
    for dx, dy in L:
        a = X[i] + dx
        b = Y[i] + dy
        if a < 0 or a > H - 1 or b < 0 or b > W - 1:
            continue
        if SS[a][b] == -1:
            continue
        U.union(i, SS[a][b])
         
   
mi, ma = 0, -10 ** 18
for i in range(H):
    for j in range(W):
        if SS[i][j] != -1:
            continue
        S = set()
        v = 0
        flag = 0
        for dx, dy in L:
            a = i + dx
            b = j + dy
            if a < 0 or a > H - 1 or b < 0 or b > W - 1:
                continue
            if SS[a][b] == -1:
                continue
            ind = U.find(SS[a][b])
            if ind in S:
                continue
            S.add(ind)
            if U.get_size(ind) >= 2:
                v -= 1
            else:
                flag = 1
                    
        if v < 0:
            v += 1
                         
        mi = min(mi, v + flag)
        ma = max(ma, v + flag)
        
ans = 0
S = set()
for i in range(N):
    if U.find(i) in S:
        continue
    S.add(U.find(i))
    if U.get_size(i) >= 2:
        ans += 1
        
print(ans + mi, ans + ma)
0