結果

問題 No.2696 Sign Creation
ユーザー rlangevinrlangevin
提出日時 2024-03-22 22:20:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,543 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 96,116 KB
最終ジャッジ日時 2024-05-17 18:12:31
合計ジャッジ時間 12,179 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,916 KB
testcase_01 AC 43 ms
61,156 KB
testcase_02 AC 34 ms
53,748 KB
testcase_03 AC 39 ms
59,736 KB
testcase_04 AC 36 ms
53,744 KB
testcase_05 AC 38 ms
59,424 KB
testcase_06 AC 35 ms
53,696 KB
testcase_07 AC 34 ms
54,348 KB
testcase_08 AC 145 ms
78,336 KB
testcase_09 AC 66 ms
75,240 KB
testcase_10 AC 141 ms
77,508 KB
testcase_11 AC 80 ms
76,120 KB
testcase_12 AC 79 ms
76,048 KB
testcase_13 AC 873 ms
82,836 KB
testcase_14 AC 480 ms
83,672 KB
testcase_15 AC 453 ms
82,824 KB
testcase_16 AC 799 ms
82,856 KB
testcase_17 AC 379 ms
76,456 KB
testcase_18 AC 282 ms
78,504 KB
testcase_19 AC 501 ms
81,636 KB
testcase_20 AC 106 ms
76,360 KB
testcase_21 AC 355 ms
85,260 KB
testcase_22 AC 502 ms
78,504 KB
testcase_23 AC 435 ms
82,616 KB
testcase_24 AC 441 ms
83,024 KB
testcase_25 AC 581 ms
81,140 KB
testcase_26 AC 387 ms
77,816 KB
testcase_27 AC 425 ms
77,732 KB
testcase_28 AC 321 ms
77,732 KB
testcase_29 AC 441 ms
76,708 KB
testcase_30 AC 371 ms
77,424 KB
testcase_31 AC 1,762 ms
96,116 KB
testcase_32 AC 38 ms
59,700 KB
testcase_33 AC 56 ms
68,744 KB
testcase_34 AC 43 ms
63,968 KB
testcase_35 AC 34 ms
55,044 KB
testcase_36 AC 32 ms
53,552 KB
testcase_37 AC 36 ms
53,972 KB
testcase_38 AC 35 ms
54,384 KB
testcase_39 WA -
testcase_40 AC 34 ms
54,296 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()
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
    
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 abs(a - X[i]) + abs(b - Y[i]) > D:
            continue
        if a < 0 or a > H - 1 or b < 0 or b > W - 1:
            continue
        if (a, b) not in DD:
            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 (i, j) in DD:
            continue
        S = set()
        v = 0
        flag = 0
        for dx, dy in L:
            a = i + dx
            b = j + dy
            if abs(a - i) + abs(b - j) > D:
                continue
            if a < 0 or a > H - 1 or b < 0 or b > W - 1:
                continue
            if (a, b) not in DD:
                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