結果

問題 No.317 辺の追加
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-23 00:57:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 1,560 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-07-05 09:22:16
合計ジャッジ時間 11,669 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 212 ms
79,428 KB
testcase_03 AC 205 ms
79,360 KB
testcase_04 AC 306 ms
81,568 KB
testcase_05 AC 192 ms
77,832 KB
testcase_06 AC 217 ms
78,832 KB
testcase_07 AC 138 ms
77,484 KB
testcase_08 AC 453 ms
83,704 KB
testcase_09 AC 240 ms
80,392 KB
testcase_10 AC 239 ms
79,792 KB
testcase_11 AC 185 ms
92,928 KB
testcase_12 AC 243 ms
79,564 KB
testcase_13 AC 230 ms
87,724 KB
testcase_14 AC 226 ms
79,604 KB
testcase_15 AC 243 ms
79,936 KB
testcase_16 AC 274 ms
81,408 KB
testcase_17 AC 238 ms
80,684 KB
testcase_18 AC 248 ms
79,616 KB
testcase_19 AC 249 ms
79,728 KB
testcase_20 AC 330 ms
81,764 KB
testcase_21 AC 105 ms
78,208 KB
testcase_22 AC 93 ms
77,184 KB
testcase_23 AC 96 ms
77,184 KB
testcase_24 AC 114 ms
78,512 KB
testcase_25 AC 110 ms
78,112 KB
testcase_26 AC 117 ms
78,076 KB
testcase_27 AC 106 ms
78,336 KB
testcase_28 AC 97 ms
77,440 KB
testcase_29 AC 78 ms
76,672 KB
testcase_30 AC 386 ms
79,180 KB
testcase_31 AC 314 ms
78,928 KB
testcase_32 AC 306 ms
79,464 KB
testcase_33 AC 309 ms
79,136 KB
testcase_34 AC 303 ms
78,932 KB
testcase_35 AC 316 ms
79,056 KB
testcase_36 AC 312 ms
78,984 KB
testcase_37 AC 311 ms
79,720 KB
testcase_38 AC 347 ms
79,104 KB
testcase_39 AC 312 ms
79,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10 ** 9


class UF_tree:
    def __init__(self, n):
        self.root = [-1] * (n + 1)
        self.rank = [0] * (n + 1)

    def find(self, x):
        stack = []
        while self.root[x] >= 0:
            stack.append(x)
            x = self.root[x]
        for i in stack:
            self.root[i] = x
        return x

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

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.rank[x] < self.rank[y]:
            self.root[y] += self.root[x]
            self.root[x] = y
        else:
            self.root[x] += self.root[y]
            self.root[y] = x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
        return True

    def size(self, x):
        return -self.root[self.find(x)]


N, M = map(int, input().split())
uf = UF_tree(N)
for _ in range(M):
    a, b = map(int, input().split())
    uf.unite(a-1, b-1)

leader = {uf.find(i) for i in range(N)}
cnt = [uf.size(i) for i in leader]

dp = [inf] * (N + 1)
dp[0] = 0
for W, total in Counter(cnt).items():
    k = 1
    while total > 0:
        mul = min(k, total)
        for i in reversed(range(W * mul, N+1)):
            dp[i] = min(dp[i], dp[i - W * mul] + mul)
        total -= mul
        k *= 2

for i in range(1, N+1):
    if dp[i] > N + 5:
        print(-1)
    else:
        print(dp[i] - 1)
0