結果
問題 | No.317 辺の追加 |
ユーザー | tubo28 |
提出日時 | 2015-12-29 02:46:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,101 bytes |
コンパイル時間 | 874 ms |
コンパイル使用メモリ | 83,492 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-09-19 08:18:57 |
合計ジャッジ時間 | 8,133 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 34 ms
6,944 KB |
testcase_22 | AC | 19 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | AC | 58 ms
6,940 KB |
testcase_25 | AC | 44 ms
6,944 KB |
testcase_26 | AC | 44 ms
6,944 KB |
testcase_27 | AC | 36 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | AC | 6 ms
6,940 KB |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | AC | 103 ms
6,940 KB |
testcase_33 | AC | 103 ms
6,944 KB |
testcase_34 | RE | - |
testcase_35 | AC | 104 ms
6,944 KB |
testcase_36 | AC | 103 ms
6,944 KB |
testcase_37 | AC | 109 ms
6,940 KB |
testcase_38 | RE | - |
testcase_39 | AC | 100 ms
6,944 KB |
ソースコード
#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 acc = 0; int i = 1; while (i <= p.second) { size.push_back(p.first*i); cost.push_back(i); acc += i; i *= 2; } i /= 2; if (acc == p.second) continue; size.push_back(p.first * (p.second - acc)); cost.push_back(p.second - acc); } static int dp[200010]; fill(all(dp), 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(); } }