zoukankan      html  css  js  c++  java
  • poj 1679 The Unique MST (判定最小生成树是否唯一)

    题目链接:http://poj.org/problem?id=1679

    The Unique MST
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 29408   Accepted: 10520

    Description

    Given a connected undirected graph, tell if its minimum spanning tree is unique. 

    Definition 1 (Spanning Tree): Consider a connected, undirected graph G = (V, E). A spanning tree of G is a subgraph of G, say T = (V', E'), with the following properties: 
    1. V' = V. 
    2. T is connected and acyclic. 

    Definition 2 (Minimum Spanning Tree): Consider an edge-weighted, connected, undirected graph G = (V, E). The minimum spanning tree T = (V, E') of G is the spanning tree that has the smallest total cost. The total cost of T means the sum of the weights on all the edges in E'. 

    Input

    The first line contains a single integer t (1 <= t <= 20), the number of test cases. Each case represents a graph. It begins with a line containing two integers n and m (1 <= n <= 100), the number of nodes and edges. Each of the following m lines contains a triple (xi, yi, wi), indicating that xi and yi are connected by an edge with weight = wi. For any two nodes, there is at most one edge connecting them.

    Output

    For each input, if the MST is unique, print the total cost of it, or otherwise print the string 'Not Unique!'.

    Sample Input

    2
    3 3
    1 2 1
    2 3 2
    3 1 3
    4 4
    1 2 2
    2 3 2
    3 4 2
    4 1 2
    

    Sample Output

    3
    Not Unique!

    题目大意: 给定一个连通无向网,判定它的最小生成树是否唯一。

    解题思路: http://www.cnblogs.com/yoke/p/6527300.html

    AC代码:
      1 #include <stdio.h>
      2 #include <string.h>
      3 #include <algorithm>
      4 
      5 using namespace std;
      6 
      7 struct point 
      8 {
      9     int u,v,w;
     10     int equal;  // 标记,1表示存在其他边权值跟该边一样,0表示不存在
     11     int used;   // 在第一次求得的MST中,是否包含该边,1包含,0不包含
     12     int del;    // 边是否删除 0不删除 1删除
     13 }p[10000];      // 存边的数组 
     14 int n,m;
     15 int first;      // 表示第一次求MST的标记变量 
     16 int parent[110];
     17 bool cmp(point a, point b)
     18 {
     19     return a.w < b.w;
     20 }
     21 int find (int x)
     22 {
     23     int s,tmp;
     24     for (s = x; parent[s] >= 0; s = parent[s]);
     25     while (s != x)
     26     {
     27         tmp = parent[x];
     28         parent[x] = s;
     29         x = tmp;
     30     }
     31     return s;
     32 }
     33 void Union (int A, int B)
     34 {
     35     int a = find(A), b = find(B);
     36     int tmp = parent[a]+parent[b];
     37     if (parent[a] > parent[b])
     38     {
     39         parent[a] = b;
     40         parent[b] = tmp;
     41     }
     42     else
     43     {
     44         parent[b] = a;
     45         parent[a] = tmp;
     46     }
     47 }
     48 int kruskal()
     49 {
     50     int sum = 0,num = 0;
     51     memset(parent,-1,sizeof(parent));
     52     for (int i = 0; i < m; i ++)
     53     {
     54         if (p[i].del) continue;      // 忽略去掉的边 
     55         int u = p[i].u, v = p[i].v;
     56         if (find(u) != find(v))
     57         {
     58             if (first)    p[i].used = 1;
     59             sum += p[i].w;
     60             Union(u,v);
     61             num ++;
     62         }
     63         if (num == n-1) break;
     64     }
     65     return sum;
     66 }
     67 int main ()
     68 {
     69     int t,i,j,u,v,w;
     70     scanf("%d",&t);
     71     while (t --)
     72     {
     73         scanf("%d%d",&n,&m);
     74         for (i = 0; i < m; i ++)
     75         {
     76             scanf("%d%d%d",&u,&v,&w);
     77             p[i].u = u; p[i].v = v; p[i].w = w;
     78             p[i].equal = 0; p[i].used = 0; p[i].del = 0;
     79         }
     80         for (i = 0; i < m; i ++)     // 标记相同权值的边 
     81         for (j = i+1; j < m; j ++)
     82         if (p[i].w == p[j].w)
     83             p[i].equal = 1;
     84         first = 1;
     85         sort(p,p+m,cmp);
     86         int sum = kruskal(), sum1;   // 第一次求MST 
     87         first = 0;
     88         for (i = 0; i < m; i ++)
     89         {
     90             if (p[i].equal && p[i].used)   // 依次去掉原MST中相同权值的边 
     91             {
     92                 p[i].del = 1;
     93                 sum1 = kruskal();
     94                 if (sum == sum1)
     95                 {
     96                     printf("Not Unique!
    ");
     97                     break;
     98                 } 
     99                 p[i].del = 0;
    100             }
    101         }
    102         if (i == m)
    103             printf("%d
    ",sum);
    104     }
    105     return 0;
    106 }
  • 相关阅读:
    java的异常抛出和String类常用方法
    监控工具zabbix
    监控工具nagios
    监控工具cacti
    LB集群
    高可用集群(HA)配置
    vsftp虚拟用户登录配置详解
    Ubuntu中设置静态IP和DNS(转载)
    虚拟机克隆linux系统后需要做的网络设置
    CentOS 6.8编译安装httpd2.2.31+MySQL5.6.31+PHP5.3.27
  • 原文地址:https://www.cnblogs.com/yoke/p/6527292.html
Copyright © 2011-2022 走看看