結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,240 KB
testcase_01 AC 46 ms
62,240 KB
testcase_02 AC 37 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 39 ms
53,460 KB
testcase_07 AC 38 ms
53,460 KB
testcase_08 AC 164 ms
78,108 KB
testcase_09 AC 74 ms
73,144 KB
testcase_10 AC 155 ms
77,348 KB
testcase_11 AC 90 ms
75,564 KB
testcase_12 AC 93 ms
75,564 KB
testcase_13 AC 1,118 ms
82,552 KB
testcase_14 AC 600 ms
83,064 KB
testcase_15 AC 546 ms
82,556 KB
testcase_16 AC 981 ms
82,560 KB
testcase_17 AC 402 ms
76,052 KB
testcase_18 AC 339 ms
77,828 KB
testcase_19 AC 610 ms
81,448 KB
testcase_20 AC 119 ms
75,968 KB
testcase_21 AC 444 ms
84,784 KB
testcase_22 AC 580 ms
78,260 KB
testcase_23 AC 523 ms
82,352 KB
testcase_24 AC 540 ms
82,352 KB
testcase_25 AC 683 ms
80,808 KB
testcase_26 AC 424 ms
77,020 KB
testcase_27 AC 481 ms
77,132 KB
testcase_28 AC 361 ms
77,252 KB
testcase_29 AC 496 ms
76,328 KB
testcase_30 AC 414 ms
76,636 KB
testcase_31 TLE -
testcase_32 AC 45 ms
59,592 KB
testcase_33 AC 62 ms
68,360 KB
testcase_34 AC 49 ms
62,096 KB
testcase_35 AC 39 ms
53,460 KB
testcase_36 AC 38 ms
53,460 KB
testcase_37 AC 39 ms
53,460 KB
testcase_38 AC 40 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()
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