結果
問題 | No.317 辺の追加 |
ユーザー | koba-e964 |
提出日時 | 2016-12-17 18:05:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,127 bytes |
コンパイル時間 | 989 ms |
コンパイル使用メモリ | 100,548 KB |
実行使用メモリ | 816,768 KB |
最終ジャッジ日時 | 2024-05-08 04:07:58 |
合計ジャッジ時間 | 5,816 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 154 ms
201,216 KB |
testcase_01 | AC | 153 ms
201,216 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <ctime> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <list> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef long long int ll; typedef vector<int> VI; typedef vector<ll> VL; typedef pair<int, int> PI; const ll mod = 1e9 + 7; const int N = 100010; VI qf[N]; // QuickFind int rt[N]; const int B = 500; int dp[B][N]; const int inf = 1e8; void solve(const vector<PI> &bag) { assert (bag.size() < B); REP(i, 0, B) { REP(j, 0, N) { dp[i][j] = inf; } } dp[0][0] = 0; REP(i, 1, bag.size() + 1) { PI cur = bag[i - 1]; REP(j, 0, N) { int res = dp[i - 1][j]; if (j >= cur.first) { res = min(res, dp[i - 1][j - cur.first] + cur.second); } dp[i][j] = res; } } } int main(void){ int n, m; cin >> n >> m; REP(i, 0, n) { qf[i].push_back(i); rt[i] = i; } REP(i, 0, m) { int u, v; cin >> u >> v; u--, v--; if (rt[u] != rt[v]) { if (qf[u].size() < qf[v].size()) { swap(u, v); } int ru = rt[u]; int rv = rt[v]; REP(j, 0, qf[rv].size()) { qf[ru].push_back(qf[rv][j]); rt[qf[rv][j]] = ru; } qf[rv].clear(); } } map<int, int> cons; REP(i, 0, n) { int s = qf[i].size(); if (s != 0) { if (cons.count(s) == 0) { cons[s] = 0; } cons[s]++; } } vector<PI> bag; for (map<int, int>::iterator it = cons.begin(); it != cons.end(); ++it) { int p = it->first; int q = it->second; int v = 1; while (v < q) { bag.push_back(PI(p * v, v)); q -= v; v *= 2; } if (q > 0) { bag.push_back(PI(p * q, q)); } } solve(bag); REP(i, 1, n + 1) { int res = dp[bag.size()][i]; cout << (res == inf ? -1 : res - 1) << endl; } }