結果

問題 No.317 辺の追加
ユーザー tubo28tubo28
提出日時 2015-12-29 02:52:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 2,050 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 83,332 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-09-19 08:21:46
合計ジャッジ時間 6,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 68 ms
5,376 KB
testcase_03 AC 79 ms
5,376 KB
testcase_04 AC 77 ms
5,760 KB
testcase_05 AC 87 ms
5,376 KB
testcase_06 AC 102 ms
5,376 KB
testcase_07 AC 32 ms
5,376 KB
testcase_08 AC 108 ms
6,656 KB
testcase_09 AC 86 ms
5,376 KB
testcase_10 AC 114 ms
5,632 KB
testcase_11 AC 54 ms
8,192 KB
testcase_12 AC 113 ms
5,632 KB
testcase_13 AC 66 ms
7,680 KB
testcase_14 AC 94 ms
5,376 KB
testcase_15 AC 107 ms
5,504 KB
testcase_16 AC 83 ms
6,016 KB
testcase_17 AC 98 ms
5,376 KB
testcase_18 AC 115 ms
5,504 KB
testcase_19 AC 115 ms
5,632 KB
testcase_20 AC 90 ms
6,144 KB
testcase_21 AC 32 ms
5,376 KB
testcase_22 AC 18 ms
5,376 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 54 ms
5,376 KB
testcase_25 AC 39 ms
5,376 KB
testcase_26 AC 41 ms
5,376 KB
testcase_27 AC 34 ms
5,376 KB
testcase_28 AC 20 ms
5,376 KB
testcase_29 AC 6 ms
5,376 KB
testcase_30 AC 129 ms
5,376 KB
testcase_31 AC 117 ms
5,376 KB
testcase_32 AC 115 ms
5,376 KB
testcase_33 AC 118 ms
5,376 KB
testcase_34 AC 117 ms
5,376 KB
testcase_35 AC 116 ms
5,376 KB
testcase_36 AC 117 ms
5,376 KB
testcase_37 AC 118 ms
5,376 KB
testcase_38 AC 123 ms
5,376 KB
testcase_39 AC 114 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <algorithm>
#include <map>
#include <set>
using namespace std;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define all(c) begin(c), end(c)
using ll = long long;

struct UnionFind {
    vector<int> par;
    int cnt;
    UnionFind(int size_) : par(size_, -1), cnt(size_) { }
    bool merge(int x, int y) {
        x = find(x); y = find(y);
        if (x != y) {
            if (par[y] < par[x]) swap(x, y);
            par[x] += par[y]; par[y] = x; cnt--;
        }
        return x != y;
    }
    bool get(int x, int y) { return find(x) == find(y); }
    int find(int x) { return par[x] < 0 ? x : par[x] = find(par[x]); }
    int size(int x) { return -par[find(x)]; }
    int size() { return cnt; }
};

int n, m;
vector<int> u, v;

void solve() {
    UnionFind uf(n);
    rep(i, m) {
        uf.merge(u[i] - 1, v[i] - 1);
    }
    set<int> vis; // root, size
    map<int, int> cnt;
    rep(i, n) {
        if (vis.count(uf.find(i))) continue;
        vis.insert(uf.find(i));
        cnt[uf.size(i)]++;
    }

    vector<int> size, cost;
    for (auto &p : cnt) {
        int i = 1;
        while (i <= p.second) {
            size.push_back(p.first*i);
            cost.push_back(i);
            p.second -= i;
            i *= 2;
        }
        i /= 2;
        if (p.second == 0) continue;
        size.push_back(p.first * p.second);
        cost.push_back(p.second);
    }
    vector<int> dp(n + 1, 1000000000);
    dp[0] = 0;
    for (int i = 0; i < cost.size(); i++) {
        for (int j = n; j >= size[i]; --j) {
            if (j == size[i]) {
                dp[j] = min(dp[j], cost[i] - 1);
            }
            else {
                dp[j] = min(dp[j], dp[j - size[i]] + cost[i]);
            }
        }
    }
    for (int i = 0; i < n; i++) {
        cout << (dp[i + 1] == 1000000000 ? -1 : dp[i + 1]) << '\n';
    }
}

int main() {
    while (cin >> n >> m) {
        u.resize(m); v.resize(m);
        rep(i, m) cin >> u[i] >> v[i];
        solve();
    }
}
0