結果

問題 No.317 辺の追加
ユーザー PachicobuePachicobue
提出日時 2017-11-18 14:45:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 3,148 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 183,256 KB
実行使用メモリ 6,020 KB
最終ジャッジ日時 2024-05-04 04:36:36
合計ジャッジ時間 8,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 111 ms
5,376 KB
testcase_03 AC 103 ms
5,376 KB
testcase_04 AC 129 ms
5,376 KB
testcase_05 AC 80 ms
5,376 KB
testcase_06 AC 121 ms
5,376 KB
testcase_07 AC 43 ms
5,376 KB
testcase_08 AC 164 ms
5,760 KB
testcase_09 AC 144 ms
5,376 KB
testcase_10 AC 149 ms
5,376 KB
testcase_11 AC 126 ms
6,020 KB
testcase_12 AC 152 ms
5,376 KB
testcase_13 AC 144 ms
5,872 KB
testcase_14 AC 147 ms
5,376 KB
testcase_15 AC 154 ms
5,376 KB
testcase_16 AC 144 ms
5,376 KB
testcase_17 AC 146 ms
5,376 KB
testcase_18 AC 164 ms
5,376 KB
testcase_19 AC 152 ms
5,376 KB
testcase_20 AC 145 ms
5,632 KB
testcase_21 AC 68 ms
5,376 KB
testcase_22 AC 36 ms
5,376 KB
testcase_23 AC 38 ms
5,376 KB
testcase_24 AC 117 ms
5,376 KB
testcase_25 AC 86 ms
5,376 KB
testcase_26 AC 88 ms
5,376 KB
testcase_27 AC 76 ms
5,376 KB
testcase_28 AC 44 ms
5,376 KB
testcase_29 AC 11 ms
5,376 KB
testcase_30 AC 171 ms
5,376 KB
testcase_31 AC 166 ms
5,376 KB
testcase_32 AC 169 ms
5,376 KB
testcase_33 AC 165 ms
5,376 KB
testcase_34 AC 169 ms
5,376 KB
testcase_35 AC 179 ms
5,376 KB
testcase_36 AC 170 ms
5,376 KB
testcase_37 AC 168 ms
5,376 KB
testcase_38 AC 173 ms
5,376 KB
testcase_39 AC 167 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define show(x) cerr << #x << " = " << x << endl

using namespace std;
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;

template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v)
{
    os << "sz=" << v.size() << "\n[";
    for (const auto& p : v) {
        os << p << ",";
    }
    os << "]\n";
    return os;
}

template <typename S, typename T>
ostream& operator<<(ostream& os, const pair<S, T>& p)
{
    os << "(" << p.first << "," << p.second
       << ")";
    return os;
}


constexpr ll MOD = 1e9 + 7;

template <typename T>
constexpr T INF = numeric_limits<T>::max() / 100;

class DisjointSets
{
public:
    DisjointSets(const int v)
    {
        m_parent.resize(v);
        m_rank.resize(v);
        m_size.resize(v);
        for (int i = 0; i < v; i++) {
            m_parent[i] = i;
            m_rank[i] = 0;
            m_size[i] = 1;
        }
    }

    bool same(const int a, const int b)
    {
        return find(a) == find(b);
    }


    int find(const int a)
    {
        if (m_parent[a] == a) {
            return a;
        } else {
            return m_parent[a] = find(m_parent[a]);
        }
    }

    void unite(const int a_, const int b_)
    {
        const int a = find(a_);
        const int b = find(b_);
        if (a == b) {
            return;
        }
        if (m_rank[a] > m_rank[b]) {
            m_parent[b] = a;
            m_size[a] += m_size[b];
        } else {
            m_parent[a] = b;
            m_size[b] += m_size[a];
        }
        if (m_rank[a] == m_rank[b]) {
            m_rank[b]++;
        }
    }

    int getSize(const int a)
    {
        return m_size[m_parent[a]];
    }

private:
    vector<int> m_parent;
    vector<int> m_rank;
    vector<int> m_size;
};

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, M;
    cin >> N >> M;
    DisjointSets uf(N);
    for (int i = 0; i < M; i++) {
        int u, v;
        cin >> u >> v;
        u--, v--;
        uf.unite(u, v);
    }
    vector<int> node(N, 0);
    for (int i = 0; i < N; i++) {
        node[uf.find(i)]++;
    }
    vector<int> num;
    for (int i = 0; i < N; i++) {
        if (node[i] > 0) {
            num.push_back(node[i]);
        }
    }
    sort(num.begin(), num.end());
    map<int, int> mp;
    for (int i = 0; i < num.size(); i++) {
        mp[num[i]]++;
    }
    auto a = num;
    a.erase(unique(a.begin(), a.end()), a.end());
    const int size = a.size();
    vector<int> m(size, 0);
    for (int i = 0; i < size; i++) {
        m[i] = mp[a[i]];
    }

    vector<int> dp(N + 1, INF<int>);
    dp[0] = -1;
    for (int i = 0; i < size; i++) {
        int num = m[i];
        for (int k = 1; num > 0; k <<= 1) {
            const int mul = min(k, num);
            for (int j = N; j >= a[i] * mul; j--) {
                dp[j] = min(dp[j], dp[j - a[i] * mul] + mul);
            }
            num -= mul;
        }
    }

    for (int i = 1; i <= N; i++) {
        if (dp[i] != INF<int>) {
            cout << dp[i] << endl;
        } else {
            cout << -1 << endl;
        }
    }

    return 0;
}
0