Freckles

题目描述
In an episode of the Dick Van Dyke show, little Richie connects the freckles on his Dad’s back to form a picture of the Liberty Bell. Alas, one of the freckles turns out to be a scar, so his Ripley’s engagement falls through. Consider Dick’s back to be a plane with freckles at various (x,y) locations. Your job is to tell Richie how to connect the dots so as to minimize the amount of ink used. Richie connects the dots by drawing straight lines between pairs, possibly lifting the pen between lines. When Richie is done there must be a sequence of connected lines from any freckle to any other freckle.
输入描述:
The first line contains 0 < n <= 100, the number of freckles on Dick’s back. For each freckle, a line follows; each following line contains two real numbers indicating the (x,y) coordinates of the freckle.
输出描述:
Your program prints a single real number to two decimal places: the minimum total length of ink lines that can connect all the freckles.
示例1
输入
3
1.0 1.0
2.0 2.0
2.0 4.0
输出
3.41

代码如下:

#include<cstdio>
#include<algorithm>
#include<cmath>
#define N 5000
using namespace std;
struct edge{
    int u,v;
    double cost;
    bool operator < (const edge &b)const{
       return cost < b.cost;
    }
}E[N]; 

struct point{
    double x,y;
    double distance(point A){
        double tmp = (x - A.x)*(x - A.x) + (y - A.y)*(y - A.y);
        return sqrt(tmp);
    }
}p[105];
int father[105];
int findFather(int x){
    if(x == father[x]) return x;
    else{
        int tp = findFather(father[x]);
        father[x] = tp;
        return tp;
    }
}
int main(){
    int n;
    while(scanf("%d",&n) != EOF){
        for(int i = 1;i <= n;i++){
            scanf("%lf%lf",&p[i].x,&p[i].y);
        }
        int k = 0;    //k用来记录边的条数 
        for(int i=1;i<=n;i++){
            for(int j=1;j<=i;j++){
                E[k].u = i;
                E[k].v = j;
                E[k].cost = p[i].distance(p[j]);
                k++;
            }
        }
    double path = 0;
    for(int i = 1;i <= n;i++){  //n个顶点 
        father[i] = i;   
    }
    sort(E,E+k);
    for(int i = 0;i < k;i++){
        int faU = findFather(E[i].u);
        int faV = findFather(E[i].v);
        if(faU != faV){
            father[faU] = faV;
            path += E[i].cost;
        }       
    }
        printf("%.2f\n",path);
    }
} 
全部评论

相关推荐

06-10 21:15
门头沟学院 Java
宁阿:好多这种没🧠的公司,他们估计都不知道毕业的人不能给安排实习岗
实习吐槽大会
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务