zoukankan      html  css  js  c++  java
  • POJ 1751 Highways (最小生成树)

    Highways

    题目链接:

    http://acm.hust.edu.cn/vjudge/contest/124434#problem/G

    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 i th 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


    ##题意: 求最小的花费使得各点联通. 初始时有一些已建的边. 最后要输出增加的边的端点.
    ##题解: 最小生成树. 把已建的边的长度赋成零后跑一遍kruskal,同时把添加到的长度不为零的边输出.
    这题1000ms的时限,POJ上C++超时,G++只要400ms,太可怕了.

    ##代码: ``` cpp #include #include #include #include #include #include #include #include #include #define LL long long #define eps 1e-8 #define maxn 755 #define mod 100000007 #define inf 0x3f3f3f3f #define IN freopen("in.txt","r",stdin); using namespace std;

    struct node{
    int left,right,cost;
    }road[maxn*maxn];

    int cmp(node x,node y) {return x.cost<y.cost;}
    int p[maxn],m,n;
    int find(int x) {return p[x]=(p[x]==x? x:find(p[x]));}
    LL kruskal()
    {
    LL ans = 0;
    for(int i=1;i<=n;i++) p[i]=i;
    sort(road+1,road+m+1,cmp);
    for(int i=1;i<=m;i++)
    {
    int x=find(road[i].left);
    int y=find(road[i].right);
    if(x!=y)
    {
    ans += (LL)road[i].cost;
    if(road[i].cost != 0)
    printf("%d %d ", road[i].left, road[i].right);
    p[x]=y;
    }
    }
    return ans;
    }

    int x[maxn],y[maxn];
    int dis[maxn][maxn];

    int main(int argc, char const *argv[])
    {
    //IN;

    scanf("%d", &n);
    m = 0;
    //memset(road,0,sizeof(road));
    
    for(int i=1; i<=n; i++) {
        scanf("%d %d", &x[i],&y[i]);
    }
    
    for(int i=1; i<=n; i++) {
        for(int j=i; j<=n; j++) {
            dis[i][j] = (x[i]-x[j])*(x[i]-x[j]) + (y[i]-y[j])*(y[i]-y[j]);
        }
    }
    
    int q; scanf("%d", &q);
    while(q--) {
        int x,y; scanf("%d %d", &x,&y);
        dis[x][y] = dis[y][x] = 0;
    }
    
    for(int i=1; i<=n; i++) {
        for(int j=i+1; j<=n; j++) {
            road[++m].left = i;
            road[m].right = j;
            road[m].cost = dis[i][j];
        }
    }
    
    int ans=kruskal();
    
    
    return 0;
    

    }

  • 相关阅读:
    DirectX:在graph自己主动连线中增加自己定义filter(graph中遍历filter)
    C3P0数据库连接池使用
    POJ
    【jQuery】复选框的全选、反选,推断哪些复选框被选中
    BestCoder Round #75 King&#39;s Cake 模拟&amp;&amp;优化 || gcd
    《Javascript_Dom 编程艺术》(第2版)读书笔记
    POJ 2947-Widget Factory(高斯消元解同余方程式)
    MFC 小知识总结四
    迭代器和iter()函数
    hdu1595find the longest of the shortest 最短路
  • 原文地址:https://www.cnblogs.com/Sunshine-tcf/p/5719864.html
Copyright © 2011-2022 走看看