• Poj1751--Highways(Prim)


    Highways
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 11028   Accepted: 3124   Special Judge

    Description

    The island nation of Flatopia is perfectly flat. Unfortunately, Flatopia has a very poor system of public highways. The Flatopian government is aware of this problem and has already constructed a number of highways connecting some of the most important towns. However, there are still some towns that you can't reach via a highway. It is necessary to build more highways so that it will be possible to drive between any pair of towns without leaving the highway system. 

    Flatopian towns are numbered from 1 to N and town i has a position given by the Cartesian coordinates (xi, yi). Each highway connects exaclty two towns. All highways (both the original ones and the ones that are to be built) follow straight lines, and thus their length is equal to Cartesian distance between towns. All highways can be used in both directions. Highways can freely cross each other, but a driver can only switch between highways at a town that is located at the end of both highways. 

    The Flatopian government wants to minimize the cost of building new highways. However, they want to guarantee that every town is highway-reachable from every other town. Since Flatopia is so flat, the cost of a highway is always proportional to its length. Thus, the least expensive highway system will be the one that minimizes the total highways length. 

    Input

    The input consists of two parts. The first part describes all towns in the country, and the second part describes all of the highways that have already been built. 

    The first line of the input file contains a single integer N (1 <= N <= 750), representing the number of towns. The next N lines each contain two integers, xi and yi separated by a space. These values give the coordinates of ith town (for i from 1 to N). Coordinates will have an absolute value no greater than 10000. Every town has a unique location. 

    The next line contains a single integer M (0 <= M <= 1000), representing the number of existing highways. The next M lines each contain a pair of integers separated by a space. These two integers give a pair of town numbers which are already connected by a highway. Each pair of towns is connected by at most one highway. 

    Output

    Write to the output a single line for each new highway that should be built in order to connect all towns with minimal possible total length of new highways. Each highway should be presented by printing town numbers that this highway connects, separated by a space. 

    If no new highways need to be built (all towns are already connected), then the output file should be created but it should be empty. 

    Sample Input

    9
    1 5
    0 0 
    3 2
    4 5
    5 1
    0 4
    5 2
    1 2
    5 3
    3
    1 3
    9 7
    1 2

    Sample Output

    1 6
    3 7
    4 9
    5 7
    8 3
    

    Source

    Kl TLE 了, Prim理解得也不好, 我nm.
     1 #include <cmath>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <iostream>
     5 using namespace std;
     6 const int INF = 0x3f3f3f3f;
     7 double a[800], b[800], map[800][800], dis[800]; int vis[800];
     8 int n;
     9 void Prim()
    10 {
    11     for(int i = 1; i <= n; i++){
    12         dis[i] = map[1][i];
    13         vis[i] = 1;
    14     }
    15     dis[1] = 0; vis[1] = -1;
    16     for(int i = 0; i< n-1; i++)
    17     {
    18         int temp = -1; double min = INF;
    19         for(int j = 1; j <= n; j++)
    20         {
    21             if(vis[j] != -1 && min > dis[j])
    22             {
    23                 temp = j;
    24                 min = dis[j];
    25             }
    26         }
    27         
    28         if(temp != -1 && dis[temp] != 0)
    29             printf("%d %d
    ", temp, vis[temp]);
    30             vis[temp] = -1;
    31         for(int j = 1; j <= n; j++)
    32         {
    33             if(vis[j] != -1 && dis[j] > map[temp][j]){
    34                 dis[j] = map[temp][j]; vis[j] = temp;
    35             }    
    36         }    
    37     }
    38     //printf("-1
    ");
    39 }
    40 
    41 int main()
    42 {
    43     scanf("%d", &n);
    44     for(int i = 1; i <= n; i++)
    45         scanf("%lf %lf", &a[i], &b[i]);
    46     for(int i = 1; i <= n; i++)
    47         for(int j = 1; j <= n; j++){
    48             double temp = sqrt((a[i]-a[j])*(a[i]-a[j])+(b[i]-b[j])*(b[i]-b[j]));
    49                 map[i][j] = map[j][i] = temp;
    50         }    
    51     int m;
    52     scanf("%d", &m);
    53     for(int i = 1; i <= m; i++){
    54         int a, b;
    55         scanf("%d %d", &a, &b);
    56         map[a][b]=map[b][a]=0;
    57             
    58     }
    59     Prim();
    60     return 0;
    61 } 
  • 相关阅读:
    JAVA程序操作hbase的Maven配置pom.xml文件
    windows下部署icescrum
    第一次博客作业——简单介绍一下自己
    2019寒假训练营第三次作业
    网络空间安全概论第5单元笔记
    2019寒假训练营第二次作业
    网络空间安全概论1、4单元笔记
    2019寒假训练营第一次作业
    软工实践个人总结
    第4次作业-结对编程之实验室程序实现
  • 原文地址:https://www.cnblogs.com/soTired/p/4725985.html
Copyright © 2020-2023  润新知