POJ 3164 Command Network

Command Network

Time Limit: 1000ms

Memory Limit: 131072KB

This problem will be judged on PKU. Original ID: 3164
64-bit integer IO format: %lld      Java class name: Main

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

POJ Monthly--2006.12.31

解题:最小树形图

 1 #include <cstdio>
 2 #include <iostream>
 3 #include <cmath>
 4 #include <cstring>
 5 #include <algorithm>
 6 using namespace std;
 7 const int INF = 0x3f3f3f3f;
 8 const int maxn = 200;
 9 struct arc {
10     int u,v;
11     double w;
12 } e[maxn*maxn];
13 struct Point {
14     int x,y;
15 } p[maxn];
16 double calc(int a,int b) {
17     double tmp = (p[a].x - p[b].x)*(p[a].x - p[b].x);
18     tmp += (p[a].y - p[b].y)*(p[a].y - p[b].y);
19     return sqrt(tmp);
20 }
21 double in[maxn];
22 int pre[maxn],hs[maxn],vis[maxn];
23 double DMST(int root,int n,int m) {
24     double ret = 0;
25     while(true) {
26         for(int i = 0; i < n; ++i) {
27             in[i] = INF;
28             hs[i] = vis[i] = -1;
29         }
30         for(int i = 0; i < m; ++i) {
31             if(e[i].u != e[i].v && e[i].w < in[e[i].v]) {
32                 in[e[i].v] = e[i].w;
33                 pre[e[i].v] = e[i].u;
34             }
35         }
36         for(int i = 0; i < n; ++i)
37             if(i != root && in[i] == INF) return -1;
38         in[root] = 0;
39         int cnt = 0;
40         for(int i = 0; i < n; ++i) {
41             ret += in[i];
42             int v = i;
43             while(vis[v] != i && hs[v] == -1 && v != root) {
44                 vis[v] = i;
45                 v = pre[v];
46             }
47             if(v != root && hs[v] == -1) {
48                 for(int u = pre[v]; u != v; u = pre[u]) hs[u] = cnt;
49                 hs[v] = cnt++;
50             }
51         }
52         if(!cnt) break;
53         for(int i = 0; i < n; ++i)
54             if(hs[i] == -1) hs[i] = cnt++;
55         for(int i = 0; i < m; ++i) {
56             int u = e[i].u,v = e[i].v;
57             e[i].u = hs[u];
58             e[i].v = hs[v];
59             if(u == v) continue;
60             e[i].w -= in[v];
61         }
62         n = cnt;
63         root = hs[root];
64     }
65     return ret;
66 }
67 int main() {
68     int n,m;
69     while(~scanf("%d%d",&n,&m)) {
70         for(int i = 0; i < n; ++i)
71             scanf("%d%d",&p[i].x,&p[i].y);
72         for(int i = 0; i < m; ++i) {
73             scanf("%d%d",&e[i].u,&e[i].v);
74             if(--e[i].u == --e[i].v) e[i].w = INF;
75             else e[i].w = calc(e[i].u,e[i].v);
76         }
77         double ret = DMST(0,n,m);
78         if(ret == -1) puts("poor snoopy");
79         else printf("%.2f\n",ret);
80     }
81     return 0;
82 }

时间: 2024-12-31 00:36:03

POJ 3164 Command Network的相关文章

POJ 3164 Command Network 最小树形图-朱刘算法裸题

题目来源:POJ 3164 Command Network 题意:求以1为根的最小树形图 没有输出字符串 思路:直接高朱刘算法 不懂的可以百度 学会了就是直接套模板的事情 其实就是不断消圈而已 不构成圈就有解 无法从根到达其他点就无解 #include <cstdio> #include <cstring> #include <cmath> const int maxn = 110; const int maxm = 50010; const double INF =

最小树形图 【poj 3164 Command Network】

定义:在有向图上的最小生成树. 算法过程:和最小生成树一样,不过这个不是无向图的,但是也可以用类似的算法,最小树形图的第一个算法数朱刘算法,依据最小生成树数算法形成的. 我们知道,在最小生成树算法中,我们每次选长度最短的边,如果满足条件则加入最小生成树中,知道所有的点都在树中,最小树形图同样. 首先和最小生成树一样,首先必须保证图联通,否则不能形成最小树形图. 但是由于是有向的,而我们只要找所有点的入边中最小的入边的和就是这个图的最小树形图,但是最关键的地方在于可能形成环,我们要做的就是缩点,把

poj 3164 Command Network(最小树形图模板)

Command Network http://poj.org/problem?id=3164 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 k

Poj 3164 Command Network【最小树形图】

Command Network Time Limit: 1000MS   Memory Limit: 131072K Total Submissions: 15914   Accepted: 4583 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 a

POJ 3164 Command Network(最小树形图)

Command Network Time Limit: 1000MS   Memory Limit: 131072K Total Submissions: 13817   Accepted: 3973 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 a

POJ 3164 Command Network (最小树形图-朱刘算法)

题目地址:POJ 3164 最小树形图第一发. 把一个v写成u了.....TLE了一晚上...(虽说今晚出去玩了..) 刚开始看这个算法的时看模板以为又是一个isap....吓得一个哆嗦.但是仔细看了看之后发现还是挺好理解的.写下自己的理解. 朱刘算法其实只有3步,然后不断循环. 1:找到每个点的最小入边.既然是生成树,那么对于每个点来说,只要选一个权值最小的入边就可以了.贪心思想.因为如果不是最小入边,那么它肯定不是最小树形图的一条边,考虑它是没有意义的. 2:找环.找环找的是最小入边构成的新

poj 3164 Command Network 【最小树形图】【朱刘算法 入门】

Command Network Time Limit: 1000MS   Memory Limit: 131072K Total Submissions: 14782   Accepted: 4249 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 a

POJ 3164 Command Network(最小树形图模板题+详解)

http://poj.org/problem?id=3164 题意: 求最小树形图. 思路: 套模板. 引用一下来自大神博客的讲解:http://www.cnblogs.com/acjiumeng/p/7136604.html 算法步骤如下: 1.判断图的连通性,若不连通直接无解,否则一定有解. 2.为除了根节点以外的所有点选择一个权值最小的入边,假设用pre数组记录前驱,f数组记录选择的边长,记所选边权和为temp. 3.(可利用并查集)判断选择的的边是否构成环,若没有则直接$ans+=tem

POJ - 3164 Command Network(朱刘算法)

题目大意:有N个点,M条有向边.现在要求你以1为根,构造出一棵最小生成树,问这棵最小生成树能否被构造出来,如果可以,总权值是多少 解题思路:朱刘算法的裸题,我只想吐槽一下POJ,用的是double型的,输出时是%.2lf,结果是WA 换成了%.2f就A了..这什么情况,白白花费了1个多小时去调错.. #include <cstdio> #include <cstring> #include <cmath> using namespace std; #define N 1