Eddy’s picture:kruskal
Eddy begins to like painting pictures recently ,he is sure of himself to become a painter.Every day Eddy draws pictures in his small room, and he usually puts out his newest pictures to let his friends appreciate. but the result it can be imagined, the friends are not interested in his picture.Eddy feels very puzzled,in order to change all friends 's view to his technical of painting pictures ,so Eddy creates a problem for the his friends of you.
Problem descriptions as follows: Given you some coordinates pionts on a drawing paper, every point links with the ink with the straight line, causes all points finally to link in the same place. How many distants does your duty discover the shortest length which the ink draws?
Input:
The first line contains 0 < n <= 100, the number of point. For each point, a line follows; each following line contains two real numbers indicating the (x,y) coordinates of the point.
Input contains multiple test cases. Process to the end of file.
Output:
Your program prints a single real number to two decimal places: the minimum total length of ink lines that can connect all the points.
#include <iostream>
#include <cstdio>
#include <cmath>
#include <iomanip>
#include <string>
#include <cstring>
#include <algorithm>
#include <set>
#include <map>
#include <vector>
#include <queue>
//<< fixed << setprecision(n)
using namespace std;
struct Node
{
int s,e;
double power;
}edge[10010];
int n;
int pre[110];
double powers = 0;
int cnt = 0;
bool Cmp(Node a,Node b)
{
return a.power < b.power;
}
double calculate(double x1,double x2,double y1,double y2)
{
return sqrt((x1 - x2)*(x1 - x2) + (y1 - y2)*(y1 - y2));
}
int pre_find(int x)
{
if(pre[x] == x) return x;
else return pre[x] = pre_find(pre[x]);
}
void kruskal(void)
{
for(int i = 0;i < cnt;i++)
{
int a = pre_find(edge[i].s);
int b = pre_find(edge[i].e);
if(a != b)
{
pre[a] = b;
powers += edge[i].power;
}
}
}
int main()
{
while(cin >> n)
{
double a[110],b[110];
for(int i = 0;i < n;i++)
{
cin >> a[i] >> b[i];
}
cnt = 0;
for(int i = 0;i < n;i++)
{
for(int j = i+1;j < n;j++)
{
edge[cnt].s = i;
edge[cnt].e = j;
edge[cnt].power = calculate(a[i],a[j],b[i],b[j]);
//cout << i << j << edge[cnt].power <<endl;
cnt++;
}
}
sort(edge,edge+cnt,Cmp);
for(int i = 0;i < 110;i++)
{
pre[i] = i;
}
powers = 0;
kruskal();
cout << fixed << setprecision(2) << powers <<endl;
}
return 0;
}
定义结构体存边
并查集操作