zoukankan      html  css  js  c++  java
  • poj 3164 Command Network(最小树形图模板)

    Command Network
    Time Limit: 1000MS   Memory Limit: 131072K
    Total Submissions: 18769   Accepted: 5392

    Description

    After a long lasting war on words, a war on arms finally breaks out between littleken’s and KnuthOcean’s kingdoms. A sudden and violent assault by KnuthOcean’s force has rendered a total failure of littleken’s command network. A provisional network must be built immediately. littleken orders snoopy to take charge of the project.

    With the situation studied to every detail, snoopy believes that the most urgent point is to enable littenken’s commands to reach every disconnected node in the destroyed network and decides on a plan to build a unidirectional communication network. The nodes are distributed on a plane. If littleken’s commands are to be able to be delivered directly from a node A to another node B, a wire will have to be built along the straight line segment connecting the two nodes. Since it’s in wartime, not between all pairs of nodes can wires be built. snoopy wants the plan to require the shortest total length of wires so that the construction can be done very soon.

    Input

    The input contains several test cases. Each test case starts with a line containing two integer N (N ≤ 100), the number of nodes in the destroyed network, and M (M ≤ 104), the number of pairs of nodes between which a wire can be built. The next N lines each contain an ordered pair xi and yi, giving the Cartesian coordinates of the nodes. Then follow M lines each containing two integers i and j between 1 and N (inclusive) meaning a wire can be built between node i and node j for unidirectional command delivery from the former to the latter. littleken’s headquarter is always located at node 1. Process to end of file.

    Output

    For each test case, output exactly one line containing the shortest total length of wires to two digits past the decimal point. In the cases that such a network does not exist, just output ‘poor snoopy’.

    Sample Input

    4 6
    0 6
    4 6
    0 0
    7 20
    1 2
    1 3
    2 3
    3 4
    3 1
    3 2
    4 3
    0 0
    1 0
    0 1
    1 2
    1 3
    4 1
    2 3

    Sample Output

    31.19
    poor snoopy

    Source

     
     
    #include<cmath>
    #include<cstdio>
    #include<cstring>
    using namespace std;
    #define N 101
    #define M 10001 
    #define inf 2e9
    double x[N],y[N];
    double in[N];
    int n,m;
    int pre[N],vis[N],col[N];
    struct node
    {
        int u,v;
        double dis;
    }e[M];
    double point_dis(int a,int b)
    {
        return sqrt((x[a]-x[b])*(x[a]-x[b])+(y[a]-y[b])*(y[a]-y[b]));
    }
    double directed_MST()
    {
        int tot=n,root=1,cirnum,to;
        double ans=0;
        while(1)
        {
            for(int i=1;i<=tot;i++) in[i]=inf;
            for(int i=1;i<=m;i++)
                if(e[i].dis<in[e[i].v] && e[i].u!=e[i].v)
                {
                    pre[e[i].v]=e[i].u;
                    in[e[i].v]=e[i].dis;
                }
            for(int i=1;i<=tot;i++)
                if(i!=root && in[i]==inf) return -1;
            cirnum=0;
            memset(vis,0,sizeof(vis));
            memset(col,0,sizeof(col));
            in[root]=0;
            for(int i=1;i<=tot;i++)
            {
                ans+=in[i];
                to=i;
                while(vis[to]!=i && !col[to] && to!=root)
                {
                    vis[to]=i;
                    to=pre[to];
                }
                if(to!=root && !col[to])
                {
                    cirnum++;
                    for(int u=pre[to];u!=to;u=pre[u])
                        col[u]=cirnum;
                    col[to]=cirnum;
                }
            }
            if(!cirnum) break;
            for(int i=1;i<=tot;i++)
                if(!col[i]) col[i]=++cirnum;
            for(int i=1;i<=m;i++)
            {
                to=e[i].v;
                e[i].u=col[e[i].u];
                e[i].v=col[e[i].v];
                if(e[i].u!=e[i].v) e[i].dis-=in[to];
            }
            tot=cirnum;
            root=col[root];
        }
        return ans;
    }
    int main()
    {
        int u,v,tot;
        double ans;
        while(scanf("%d%d",&n,&m)!=EOF)
        {
            for(int i=1;i<=n;i++) scanf("%lf%lf",&x[i],&y[i]);
            tot=0;
            while(m--)
            {
                scanf("%d%d",&u,&v);
                if(u!=v)
                {
                    e[++tot].u=u;
                    e[tot].v=v;
                    e[tot].dis=point_dis(u,v);
                }
            }
            m=tot;
            ans=directed_MST();
            if(ans==-1) printf("poor snoopy
    ");
            else printf("%.2lf
    ",ans);
        }
    }
  • 相关阅读:
    爬虫
    PEP8 常用规范
    struts2入门Demo
    JDBC连接mysql数据库操作
    MongoDB学习笔记—03 增删改查操作
    MongoDB学习笔记—02 MongoDB入门
    MongoDB学习笔记-01 简介、安装
    ElasticSearch学习笔记-02集群相关操作_cat参数
    ElasticSearch学习笔记-01 简介、安装、配置与核心概念
    CSS学习
  • 原文地址:https://www.cnblogs.com/TheRoadToTheGold/p/7434689.html
Copyright © 2011-2022 走看看