首页 > 其他 > 详细

poj 1308 Is It A Tree? (并查集)

时间:2014-04-17 18:00:05      阅读:378      评论:0      收藏:0      [点我收藏+]

题目的算法就是每次选择水果排序后,每次选择重量最小的两堆合并

#include<iostream>
#include<vector>
#include<iterator>
#include<set>
using namespace std;
int main()
{
	int N;
	cin>>N;
	while(N--)
	{
		int num;
		cin>>num;
		multiset<long long>Apple;
		while(num--)
		{   long long weight;
		    cin>>weight;
			Apple.insert(weight);
		}

		multiset<int>::iterator it;
		long long temp1,temp2,result=0;
		while(Apple.size()!=1)
		{
			
			temp1=*Apple.begin();   //set 是自动由小到大排序所以只要取出第一第二个即可
			Apple.erase(Apple.begin());
			temp2=*Apple.begin();
			Apple.erase(Apple.begin());
			result+=temp1+temp2;
			Apple.insert(temp1+temp2);

		}
		cout<<result<<endl;



	}
}
注:不要使用algorithm头文件中的sort排序,因为这个在ACM平台上回超时,同时最好也别使用multiset.erase(first, last )貌似这个也会超时。。。很蛋疼。


最好请大神帮我分析一下set得数据结构,以及自带排序得实现和时间复杂度,因为sort是nlogn

poj 1308 Is It A Tree? (并查集),布布扣,bubuko.com

poj 1308 Is It A Tree? (并查集)

原文:http://blog.csdn.net/accelerator_/article/details/23930947

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!