結果

問題 No.2696 Sign Creation
ユーザー rlangevinrlangevin
提出日時 2024-03-22 22:27:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,461 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 97,404 KB
最終ジャッジ日時 2024-03-22 22:27:17
合計ジャッジ時間 10,674 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,848 KB
testcase_01 AC 45 ms
59,848 KB
testcase_02 AC 39 ms
53,460 KB
testcase_03 AC 43 ms
59,464 KB
testcase_04 AC 40 ms
53,460 KB
testcase_05 AC 43 ms
59,464 KB
testcase_06 AC 42 ms
53,460 KB
testcase_07 AC 39 ms
53,460 KB
testcase_08 AC 102 ms
76,456 KB
testcase_09 AC 56 ms
64,184 KB
testcase_10 AC 114 ms
76,608 KB
testcase_11 AC 61 ms
66,384 KB
testcase_12 AC 61 ms
66,384 KB
testcase_13 AC 620 ms
82,732 KB
testcase_14 AC 433 ms
83,184 KB
testcase_15 AC 391 ms
83,132 KB
testcase_16 AC 655 ms
82,588 KB
testcase_17 AC 112 ms
73,992 KB
testcase_18 AC 165 ms
77,996 KB
testcase_19 AC 351 ms
81,764 KB
testcase_20 AC 71 ms
68,468 KB
testcase_21 AC 401 ms
85,624 KB
testcase_22 AC 236 ms
78,192 KB
testcase_23 AC 381 ms
82,496 KB
testcase_24 AC 416 ms
82,368 KB
testcase_25 AC 351 ms
81,088 KB
testcase_26 AC 155 ms
77,116 KB
testcase_27 AC 193 ms
77,396 KB
testcase_28 AC 171 ms
77,500 KB
testcase_29 AC 158 ms
76,324 KB
testcase_30 AC 150 ms
76,864 KB
testcase_31 TLE -
testcase_32 AC 43 ms
59,464 KB
testcase_33 AC 52 ms
64,188 KB
testcase_34 AC 45 ms
61,704 KB
testcase_35 AC 38 ms
53,460 KB
testcase_36 AC 37 ms
53,460 KB
testcase_37 AC 38 ms
53,460 KB
testcase_38 AC 38 ms
53,460 KB
権限があれば一括ダウンロードができます

ソースコード

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)
DD = dict()
SS = [[0] * (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
    DD[(X[i], Y[i])] = i
    SS[X[i]][Y[i]] = 1
    
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 not SS[a][b]:
            continue
        ind = DD[(a, b)]
        U.union(i, ind)
         
   
mi, ma = 0, -10 ** 18
for i in range(H):
    for j in range(W):
        if SS[i][j]:
            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 not SS[a][b]:
                continue
            ind = U.find(DD[(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