結果

問題 No.317 辺の追加
ユーザー cielciel
提出日時 2015-12-11 05:36:51
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,370 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 73,336 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2023-10-13 10:52:12
合計ジャッジ時間 12,635 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,700 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 733 ms
4,352 KB
testcase_03 AC 113 ms
4,352 KB
testcase_04 TLE -
testcase_05 AC 40 ms
4,348 KB
testcase_06 AC 67 ms
4,348 KB
testcase_07 AC 17 ms
4,352 KB
testcase_08 TLE -
testcase_09 AC 1,302 ms
4,352 KB
testcase_10 AC 337 ms
4,348 KB
testcase_11 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <unordered_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;}
	void unite(int a,int b){
		int x=root(a),y=root(b);
		if(rank[x]<rank[y]){
			parent[x]=y;
		}else{
			parent[y]=x;
			if(rank[x]==rank[y])rank[x]++;
		}
	}
	void enumerate(unordered_map<int,int> &edges){
		unordered_map<int,int> r;
		for(int i=0;i<n;i++)++r[root(i)];
		for(auto &e:r)edges[e.second]++;
	}
};
int main(){
	const int INF=1<<29;
	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);
	}
	unordered_map<int,int>edges;
	uf.enumerate(edges);
	vector<int>bag(N+1,N);
	bag[0]=-1;
	int t=0;
	for(auto &e:edges){
		int n=e.second;
#if 0
		for(int d=1;n;d*=2){
			int x=min(d,n);
			n-=x;
			int y=e.first*x;
			t+=y;
			for(int i=t;i>=y;i--)if(bag[i-y]<N){
				bag[i]=min(bag[i],bag[i-y]+x);
			}
			d*=2;
		}
#else
		for(int j=n;j--;){
			t+=e.first;
			for(int i=t;i>=e.first;i--)if(bag[i-e.first]<N){
				bag[i]=min(bag[i],bag[i-e.first]+1);
			}
		}
#endif
	}
	for(int i=1;i<=N;i++)printf("%d\n",bag[i]==N ? -1 : bag[i]);
}
0