結果
問題 | No.317 辺の追加 |
ユーザー | koyumeishi |
提出日時 | 2015-12-10 02:48:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 95 ms / 2,000 ms |
コード長 | 1,732 bytes |
コンパイル時間 | 834 ms |
コンパイル使用メモリ | 82,128 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-09-15 07:20:34 |
合計ジャッジ時間 | 5,006 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 51 ms
9,088 KB |
testcase_03 | AC | 61 ms
8,960 KB |
testcase_04 | AC | 50 ms
9,344 KB |
testcase_05 | AC | 60 ms
8,064 KB |
testcase_06 | AC | 74 ms
9,600 KB |
testcase_07 | AC | 23 ms
5,504 KB |
testcase_08 | AC | 69 ms
9,728 KB |
testcase_09 | AC | 63 ms
10,624 KB |
testcase_10 | AC | 92 ms
11,776 KB |
testcase_11 | AC | 24 ms
8,320 KB |
testcase_12 | AC | 95 ms
11,520 KB |
testcase_13 | AC | 37 ms
8,704 KB |
testcase_14 | AC | 76 ms
10,880 KB |
testcase_15 | AC | 83 ms
11,392 KB |
testcase_16 | AC | 57 ms
10,112 KB |
testcase_17 | AC | 89 ms
11,264 KB |
testcase_18 | AC | 91 ms
11,628 KB |
testcase_19 | AC | 89 ms
11,648 KB |
testcase_20 | AC | 59 ms
9,984 KB |
testcase_21 | AC | 22 ms
7,040 KB |
testcase_22 | AC | 12 ms
5,504 KB |
testcase_23 | AC | 12 ms
5,376 KB |
testcase_24 | AC | 37 ms
9,856 KB |
testcase_25 | AC | 27 ms
8,192 KB |
testcase_26 | AC | 28 ms
8,448 KB |
testcase_27 | AC | 23 ms
7,296 KB |
testcase_28 | AC | 13 ms
5,376 KB |
testcase_29 | AC | 4 ms
5,376 KB |
testcase_30 | AC | 74 ms
10,752 KB |
testcase_31 | AC | 70 ms
10,880 KB |
testcase_32 | AC | 71 ms
10,752 KB |
testcase_33 | AC | 68 ms
10,752 KB |
testcase_34 | AC | 70 ms
10,752 KB |
testcase_35 | AC | 71 ms
10,752 KB |
testcase_36 | AC | 70 ms
10,880 KB |
testcase_37 | AC | 73 ms
10,752 KB |
testcase_38 | AC | 73 ms
10,752 KB |
testcase_39 | AC | 74 ms
10,752 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:66:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 66 | scanf("%d%d", &u, &v); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> #include <set> using namespace std; class UnionFindTree{ typedef struct { int parent; int rank; }base_node; vector<base_node> node; public: UnionFindTree(int n){ node.resize(n); for(int i=0; i<n; i++){ node[i].parent=i; node[i].rank=0; } } int find(int x){ if(node[x].parent == x) return x; else{ return node[x].parent = find(node[x].parent); } } bool same(int x, int y){ return find(x) == find(y); } void unite(int x, int y){ x = find(node[x].parent); y = find(node[y].parent); if(x==y) return; if(node[x].rank < node[y].rank){ node[x].parent = y; }else if(node[x].rank > node[y].rank){ node[y].parent = x; }else{ node[x].rank++; unite(x,y); } } }; #include <cassert> int main(){ int n,m; cin >> n >> m; vector<vector<int>> g(n); UnionFindTree uft(n); for(int i=0; i<m; i++){ int u,v; scanf("%d%d", &u, &v); u--;v--; g[u].push_back(v); g[v].push_back(u); uft.unite(u,v); } vector<int> cnt(n, 0); for(int i=0; i<n; i++){ int r = uft.find(i); cnt[r]++; } vector<int> unko(n+1, 0); for(int i=0; i<n; i++){ if(cnt[i]) unko[cnt[i]] += 1; } vector<int> ans(n+1, 5*n); ans[0] =-1; for(int i=0; i<=n; ++i){ for(int k=1; unko[i]>0; k<<=1){ int c = min(unko[i], k); vector<int> next; for(int p=n-c * i; p>=0; --p){ if(ans[p] == 5*n) continue; if(ans[p + c * i] > ans[p] + c){ ans[p+c * i] = ans[p] + c; } } unko[i] -= c; } } for(int i=1; i<=n; i++){ if(ans[i] == 5*n) ans[i] = -1; printf("%d\n", ans[i]); } return 0; }