結果
問題 | No.317 辺の追加 |
ユーザー | koyumeishi |
提出日時 | 2015-12-10 01:54:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,027 bytes |
コンパイル時間 | 1,033 ms |
コンパイル使用メモリ | 98,496 KB |
実行使用メモリ | 15,012 KB |
最終ジャッジ日時 | 2024-09-15 07:16:45 |
合計ジャッジ時間 | 6,580 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1,469 ms
9,216 KB |
testcase_03 | AC | 79 ms
8,832 KB |
testcase_04 | TLE | - |
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 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:68:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 68 | 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 <bitset> typedef bitset<100000> bits; #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]++; } //map<int,int> w; vector<int> unko; for(int i=0; i<n; i++){ //if(cnt[i]) w[cnt[i]] += 1; if(cnt[i]) unko.push_back(cnt[i]); } sort(unko.rbegin(), unko.rend()); vector<int> ans(n+1, 5*n); queue<int> pos; pos.push(0); ans[0] = -1; for(int i=0; i<unko.size(); i++){ vector<int> next; while(pos.size()){ int p = pos.front(); pos.pop(); if(ans[p+unko[i]] > ans[p]+1){ ans[p+unko[i]] = ans[p]+1; next.push_back(p+unko[i]); } next.push_back(p); } sort(next.begin(), next.end()); next.erase( unique(next.begin(), next.end()), next.end()); for(auto itr=next.begin(); itr!=next.end(); itr++){ pos.push(*itr); } } for(int i=1; i<=n; i++){ if(ans[i] == 5*n) ans[i] = -1; printf("%d\n", ans[i]); } return 0; }