• Freckles


    Description

    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.

    Input

    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.

    Output

    Your program prints a single real number to two decimal places: the minimum total length of ink lines that can connect all the freckles.

    Sample Input

    3
    1.0 1.0
    2.0 2.0
    2.0 4.0
    

    Sample Output

    3.41

    prim:

    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<queue>
    #include<cmath>
    using namespace std;
    int n;
    double map[110][110],sum;
    int v[210];
    void prm()
    {
        int i,k,p;
        double max;
        k=n-1;
        while (k--)
        {
            for (i=2;i<=n;i++)
            if (!v[i]) {max=map[1][i];p=i;break;}
            for (i=i+1;i<=n;i++)
            if (!v[i]&&max>map[1][i]) {max=map[1][i];p=i;}
            v[p]=1;
            sum+=max;
            for (i=2;i<=n;i++)
            if (map[1][i]>map[p][i]) map[1][i]=map[p][i];
        }
        return ;
    }
    int main()
    {
        double a[110],b[110];
        int i,j;
        sum=0;
        scanf("%d",&n);
        for (i=1;i<=n;i++) scanf("%lf%lf",&a[i],&b[i]);
        for (i=1;i<=n;i++)
        for (j=i;j<=n;j++)
        map[i][j]=map[j][i]=sqrt((a[i]-a[j])*(a[i]-a[j])+(b[i]-b[j])*(b[i]-b[j]));
        prm();
        printf("%0.2f
    ",sum);
        return 0;
    }
    
  • 相关阅读:
    HTTP报文(转)
    批处理增加开机启动项(转)
    HTTP代理服务程序介绍(copy)
    MP3文件格式说明 (转)
    [sql] SQL Server判断对象是否存在
    MSSQL 链接远程数据库 读取并操作数据
    将无线网卡变成“无线路由器(无线AP)”
    :DOS命令大全(经典收藏)
    java 使用 poi 操纵 excel2003 经验总结
    log4j.properties的配置详解(根据网络资料整理)
  • 原文地址:https://www.cnblogs.com/pblr/p/4711409.html
Copyright © 2020-2023  润新知