結果
問題 | No.317 辺の追加 |
ユーザー |
|
提出日時 | 2015-12-10 00:50:17 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1,344 ms / 2,000 ms |
コード長 | 1,229 bytes |
コンパイル時間 | 783 ms |
コンパイル使用メモリ | 58,368 KB |
実行使用メモリ | 8,320 KB |
最終ジャッジ日時 | 2024-09-15 07:01:06 |
合計ジャッジ時間 | 7,583 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 38 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:32:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 32 | scanf("%d%d",&N,&M); | ~~~~~^~~~~~~~~~~~~~ main.cpp:36:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 36 | scanf("%d%d",&a,&b); | ~~~~~^~~~~~~~~~~~~~ main.cpp:45:28: warning: ‘tbelow’ may be used uninitialized in this function [-Wmaybe-uninitialized] 45 | else tbelow+=e; | ~~~~~~^~~
ソースコード
#include <vector>#include <map>#include <algorithm>#include <cstdio>using namespace std;class union_find{int *parent,*rank,n;public:int root(int a){return parent[a]==a?a:(parent[a]=root(parent[a]));}union_find(int _n){n=_n;parent=new int[n];rank=new int[n];for(int i=0;i<n;i++)parent[i]=i,rank[i]=0;}~union_find(){delete []parent;delete []rank;}int same(int a,int b){return root(a)==root(b);}int unite(int a,int b){int x=root(a),y=root(b);if(x==y)return 0;if(rank[x]<rank[y]){parent[x]=y;}else{parent[y]=x;if(rank[x]==rank[y])rank[x]++;}return 1;}void enumerate(vector<int> &edges){map<int,int> r;for(int i=0;i<n;i++)r[root(i)]++;for(auto &e:r)edges.push_back(e.second);sort(edges.begin(),edges.end());}};int main(){int N,M;scanf("%d%d",&N,&M);union_find uf(N);for(;M--;){int a,b;scanf("%d%d",&a,&b);uf.unite(a-1,b-1);}vector<int>edges;uf.enumerate(edges);vector<int>bag(N+1,-1);int t=0,tbelow,prev=0;for(auto &e:edges){if(prev!=e)prev=e,tbelow=e;else tbelow+=e;t+=e;for(int i=t;i>=tbelow;i--)if(i==e||bag[i-e]>=0){if(bag[i]<0||bag[i]>bag[i-e]+1)bag[i]=bag[i-e]+1;}}for(int i=1;i<=N;i++)printf("%d\n",bag[i]);}