結果

問題 No.2696 Sign Creation
ユーザー ntudantuda
提出日時 2024-03-23 20:41:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 698 ms / 2,500 ms
コード長 1,594 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 90,396 KB
最終ジャッジ日時 2024-05-17 18:25:03
合計ジャッジ時間 7,978 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,472 KB
testcase_01 AC 41 ms
59,880 KB
testcase_02 AC 35 ms
52,644 KB
testcase_03 AC 37 ms
58,168 KB
testcase_04 AC 36 ms
53,820 KB
testcase_05 AC 38 ms
53,448 KB
testcase_06 AC 33 ms
53,516 KB
testcase_07 AC 35 ms
53,908 KB
testcase_08 AC 117 ms
77,312 KB
testcase_09 AC 60 ms
71,428 KB
testcase_10 AC 140 ms
78,156 KB
testcase_11 AC 70 ms
76,160 KB
testcase_12 AC 69 ms
76,316 KB
testcase_13 AC 454 ms
83,164 KB
testcase_14 AC 343 ms
83,160 KB
testcase_15 AC 336 ms
83,108 KB
testcase_16 AC 429 ms
82,524 KB
testcase_17 AC 181 ms
77,840 KB
testcase_18 AC 215 ms
79,224 KB
testcase_19 AC 337 ms
81,688 KB
testcase_20 AC 77 ms
76,492 KB
testcase_21 AC 326 ms
84,724 KB
testcase_22 AC 266 ms
80,056 KB
testcase_23 AC 333 ms
83,268 KB
testcase_24 AC 323 ms
82,768 KB
testcase_25 AC 373 ms
81,964 KB
testcase_26 AC 226 ms
78,136 KB
testcase_27 AC 189 ms
78,988 KB
testcase_28 AC 186 ms
78,992 KB
testcase_29 AC 143 ms
77,292 KB
testcase_30 AC 207 ms
77,812 KB
testcase_31 AC 698 ms
90,396 KB
testcase_32 AC 40 ms
58,868 KB
testcase_33 AC 54 ms
70,424 KB
testcase_34 AC 41 ms
60,704 KB
testcase_35 AC 36 ms
53,912 KB
testcase_36 AC 37 ms
53,356 KB
testcase_37 AC 36 ms
52,464 KB
testcase_38 AC 37 ms
53,204 KB
testcase_39 AC 35 ms
53,064 KB
testcase_40 AC 35 ms
53,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def root(x):
    if P[x] < 0: return x
    P[x] = root(P[x])  # 経路圧縮
    return P[x]
def unite(x,y):
    x = root(x)
    y = root(y)
    if x == y: return
    if x > y: x,y = y,x
    P[x] += P[y]
    P[y] = x
def same(x,y):
    return root(x) == root(y)
def size(x):
    x = root(x)
    return -P[x]

H, W, N, D = map(int, input().split())
XY = [list(map(int,input().split())) for _ in range(N)]
P = [-1] * N
M = [[-1] * (W+1) for _ in range(H+1)]

for i,(x,y) in enumerate(XY):
    M[x][y] = i

def search(x, y):
    ret = set()
    for i in range(-D, D+1):
        if 0 < x + i <= H:
            xi = x + i
            for j in range(-D + abs(i), D - abs(i) + 1):
                if 0 < y + j <= W:
                    yj = y+j
                    if M[xi][yj] > -1:
                        ret.add(M[xi][yj])
    return ret

for i,(x,y) in enumerate(XY):
    for j in search(x,y):
        unite(i,j)

Q = set()
for i in range(N):
    if size(i) >= 2:
        Q.add(root(i))
gcount = len(Q)

ansmax = 0
ansmin = gcount
for i in range(1,H+1):
    for j in range(1,W+1):
        if M[i][j] > -1:
            continue
        tmp = search(i,j)
        Q1 = set()
        Q2 = set()
        for k in tmp:
            if size(k) > 1:
                Q2.add(root(k))
            else:
                Q1.add(k)
        if Q2:
            tmp2 = gcount - len(Q2) + 1
            ansmax = max(ansmax, tmp2)
            ansmin = min(ansmin, tmp2)
        elif Q1:
            tmp2 = gcount + 1
            ansmax = max(ansmax,tmp2)
            ansmin = min(ansmin,tmp2)

print(ansmin,ansmax)

0