結果
問題 | No.317 辺の追加 |
ユーザー | kimiyuki |
提出日時 | 2016-11-25 22:23:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,370 bytes |
コンパイル時間 | 847 ms |
コンパイル使用メモリ | 90,580 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-05-05 13:32:12 |
合計ジャッジ時間 | 7,449 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 900 ms
9,472 KB |
testcase_03 | AC | 251 ms
10,496 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 171 ms
9,344 KB |
testcase_06 | AC | 234 ms
11,392 KB |
testcase_07 | AC | 66 ms
6,016 KB |
testcase_08 | TLE | - |
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 <iostream> #include <vector> #include <map> #include <tuple> #include <functional> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) #define repeat_from(i,m,n) for (int i = (m); (i) < (n); ++(i)) #define repeat_reverse(i,n) for (int i = (n)-1; (i) >= 0; --(i)) using namespace std; template <class T> void setmin(T & a, T const & b) { if (b < a) a = b; } const int inf = 1e9+7; int main() { // input int n, m; cin >> n >> m; vector<vector<int> > g(n); repeat (i,m) { int u, v; cin >> u >> v; -- u; -- v; g[u].push_back(v); g[v].push_back(u); } // enumerate components map<int,int> components; { vector<bool> used(n); function<int (int)> go = [&](int i) { used[i] = true; int acc = 1; for (int j : g[i]) if (not used[j]) acc += go(j); return acc; }; repeat (i,n) if (not used[i]) { components[go(i)] += 1; } } // dp vector<int> dp(n+1, inf); dp[0] = -1; for (auto it : components) { int size, cnt; tie(size, cnt) = it; while (cnt --) { repeat_reverse (i,n+1-size) { setmin(dp[i+size], dp[i]+1); } } } // output repeat_from (i,1,n+1) { cout << (dp[i] == inf ? -1 : dp[i]) << endl; } return 0; }