結果

問題 No.317 辺の追加
ユーザー msm1993msm1993
提出日時 2020-06-01 11:37:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 1,407 bytes
コンパイル時間 1,129 ms
コンパイル使用メモリ 84,396 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-01 08:54:59
合計ジャッジ時間 10,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 159 ms
6,944 KB
testcase_03 AC 166 ms
6,944 KB
testcase_04 AC 158 ms
6,944 KB
testcase_05 AC 149 ms
6,944 KB
testcase_06 AC 185 ms
6,940 KB
testcase_07 AC 60 ms
6,944 KB
testcase_08 AC 185 ms
6,944 KB
testcase_09 AC 204 ms
6,944 KB
testcase_10 AC 247 ms
6,944 KB
testcase_11 AC 145 ms
6,940 KB
testcase_12 AC 246 ms
6,944 KB
testcase_13 AC 155 ms
6,940 KB
testcase_14 AC 217 ms
6,948 KB
testcase_15 AC 241 ms
6,944 KB
testcase_16 AC 190 ms
6,940 KB
testcase_17 AC 229 ms
6,944 KB
testcase_18 AC 244 ms
6,944 KB
testcase_19 AC 246 ms
6,944 KB
testcase_20 AC 188 ms
6,944 KB
testcase_21 AC 98 ms
6,940 KB
testcase_22 AC 52 ms
6,940 KB
testcase_23 AC 54 ms
6,944 KB
testcase_24 AC 168 ms
6,944 KB
testcase_25 AC 121 ms
6,940 KB
testcase_26 AC 127 ms
6,944 KB
testcase_27 AC 101 ms
6,940 KB
testcase_28 AC 52 ms
6,944 KB
testcase_29 AC 14 ms
6,940 KB
testcase_30 AC 211 ms
6,944 KB
testcase_31 AC 207 ms
6,940 KB
testcase_32 AC 203 ms
6,940 KB
testcase_33 AC 206 ms
6,940 KB
testcase_34 AC 210 ms
6,944 KB
testcase_35 AC 212 ms
6,944 KB
testcase_36 AC 209 ms
6,940 KB
testcase_37 AC 211 ms
6,940 KB
testcase_38 AC 217 ms
6,944 KB
testcase_39 AC 212 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
using namespace std;

// 簡易UF
struct UF{
    vector<int> p;
    int n;

    UF(int siz){
        n = siz;
        p.resize(n, 0);
        for(int i = 0; i < n; i++)  p[i] = i;
    }

    int parent(int x){
        if(p[x] != x)   p[x] = parent(p[x]);
        return p[x];
    }

    bool same(int x, int y){
        return parent(x) == parent(y);
    }
    
    void unite(int x, int y){
        x = parent(x), y = parent(y);
        p[x] = y;
    }
};

// ナップサックで同じものをN個まで選べるときに
// 2進数を使ってlog(N)で0~N個選ぶ場合を網羅するテク
int main(){
    int n, x;
    cin >> n >> x;
    UF uf(n);
    while(x-- > 0){
        int u, v;
        cin >> u >> v;
        uf.unite(--u, --v);
    }
    vector<int> cnt(n, 0);
    for(int i = 0; i < n; i++)  cnt[uf.parent(i)]++;
    map<int,int> m;
    for(int i = 0; i < n; i++){
        if(cnt[i])  m[cnt[i]]++;
    }
    vector<int> dp(n+1, 1<<30);
    dp[0] = 0;
    for(auto p : m){
        int res = p.second;
        for(int k = 0; res > 0; k++){
            int take = min(1<<k, res);
            res -= take;
            for(int j = n; j >= p.first*take; j--){
                dp[j] = min(dp[j], dp[j-p.first*take]+take);
            }
        }
    }
    for(int i = 1; i <= n; i++) cout << (dp[i]==1<<30 ? -1 : dp[i]-1) << endl;
    return 0;
}
0