結果

問題 No.317 辺の追加
ユーザー 👑 rin204rin204
提出日時 2022-11-11 16:52:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 1,838 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 83,968 KB
最終ジャッジ日時 2024-09-13 12:10:54
合計ジャッジ時間 12,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,360 KB
testcase_01 AC 39 ms
53,884 KB
testcase_02 AC 284 ms
78,524 KB
testcase_03 AC 286 ms
79,232 KB
testcase_04 AC 316 ms
80,408 KB
testcase_05 AC 269 ms
78,080 KB
testcase_06 AC 298 ms
78,504 KB
testcase_07 AC 189 ms
77,312 KB
testcase_08 AC 416 ms
81,152 KB
testcase_09 AC 327 ms
80,152 KB
testcase_10 AC 337 ms
79,724 KB
testcase_11 AC 177 ms
83,968 KB
testcase_12 AC 326 ms
79,488 KB
testcase_13 AC 234 ms
82,432 KB
testcase_14 AC 315 ms
79,232 KB
testcase_15 AC 330 ms
79,104 KB
testcase_16 AC 329 ms
80,000 KB
testcase_17 AC 334 ms
79,616 KB
testcase_18 AC 331 ms
79,360 KB
testcase_19 AC 336 ms
79,488 KB
testcase_20 AC 356 ms
80,664 KB
testcase_21 AC 117 ms
77,200 KB
testcase_22 AC 107 ms
77,016 KB
testcase_23 AC 112 ms
77,136 KB
testcase_24 AC 133 ms
77,488 KB
testcase_25 AC 126 ms
77,584 KB
testcase_26 AC 129 ms
77,768 KB
testcase_27 AC 120 ms
77,392 KB
testcase_28 AC 109 ms
77,076 KB
testcase_29 AC 91 ms
76,720 KB
testcase_30 AC 322 ms
78,124 KB
testcase_31 AC 319 ms
78,336 KB
testcase_32 AC 318 ms
78,256 KB
testcase_33 AC 318 ms
78,616 KB
testcase_34 AC 311 ms
78,208 KB
testcase_35 AC 317 ms
78,080 KB
testcase_36 AC 317 ms
78,080 KB
testcase_37 AC 317 ms
78,208 KB
testcase_38 AC 343 ms
78,632 KB
testcase_39 AC 318 ms
78,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n
        self.group = n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return False
        self.group -= 1
        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x
        return True

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

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

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return self.group

    def all_group_members(self):
        dic = {r:[] for r in self.roots()}
        for i in range(self.n):
            dic[self.find(i)].append(i)
        return dic

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

n, m = map(int, input().split())
UF = UnionFind(n)
for _ in range(m):
    u, v = map(int, input().split())
    UF.union(u - 1, v - 1)

cnt = {}
for r in UF.roots():
    s = UF.size(r)
    cnt[s] = cnt.get(s, 0) + 1

dp = [1 << 60] * (n + 1)
dp[0] = 0
for k, v in cnt.items():
    c = 1
    while v > 0:
        w = min(c, v)
        v -= c
        c *= 2

        for i in range(n, k * w - 1, -1):
            dp[i] = min(dp[i], dp[i - k * w] + w)

for i in range(1, n + 1):
    if dp[i] == 1 << 60:
        print(-1)
    else:
        print(dp[i] - 1)
0