結果
問題 | No.317 辺の追加 |
ユーザー | maru143 |
提出日時 | 2021-05-02 15:07:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,439 bytes |
コンパイル時間 | 2,307 ms |
コンパイル使用メモリ | 213,064 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-21 00:03:33 |
合計ジャッジ時間 | 10,137 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 76 ms
5,376 KB |
testcase_22 | AC | 41 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | AC | 134 ms
5,376 KB |
testcase_25 | AC | 92 ms
5,376 KB |
testcase_26 | AC | 100 ms
5,376 KB |
testcase_27 | AC | 77 ms
5,376 KB |
testcase_28 | AC | 42 ms
5,376 KB |
testcase_29 | AC | 12 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | AC | 169 ms
5,376 KB |
testcase_32 | AC | 171 ms
5,376 KB |
testcase_33 | AC | 168 ms
5,376 KB |
testcase_34 | AC | 170 ms
5,376 KB |
testcase_35 | AC | 170 ms
5,376 KB |
testcase_36 | AC | 172 ms
5,376 KB |
testcase_37 | AC | 171 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | AC | 169 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = int64_t; struct UnionFind { vector<int> par; UnionFind(int n) : par(n, -1) {} int root(int x) { if (par[x] < 0) return x; return par[x] = root(par[x]); } bool unite(int x, int y) { int rx = root(x), ry = root(y); if (rx == ry) return false; if (size(rx) < size(ry)) swap(rx, ry); par[rx] += par[ry]; par[ry] = rx; return true; } bool same(int x, int y) { return root(x) == root(y); } int size(int x) { return -par[root(x)]; } }; void solve() { int n, m; cin >> n >> m; UnionFind uf(n); for (int i = 0; i < m; i++) { int a, b; cin >> a >> b; a--; b--; uf.unite(a, b); } map<int, int> C; for (int i = 0; i < n; i++) { if (uf.root(i) == i) { C[uf.size(i)]++; } } vector<int> dp(n + 1, n + 1); dp[0] = 0; for (auto [x, num] : C) { for (int k = 1; num; k <<= 1) { int m = min(k, num); for (int j = n; j >= x; j--) { dp[j] = min(dp[j], dp[j - x] + m); } num -= m; } } for (int i = 1; i <= n; i++) { cout << (dp[i] == n + 1 ? -1 : dp[i] - 1) << endl; } } int main() { cin.tie(0); ios::sync_with_stdio(false); solve(); return 0; }