poj1287 Networking 最小生成树模板题。prim+kruskal算法AC

Networking

Time Limit:1000MSMemory Limit:10000K

Total Submissions:6623Accepted:3608

Description

You are assigned to design network connections between certain points in a wide area. You are given a set of points in the area, and a set of possible routes for the cables that may connect pairs of points. For each possible route between two points, you are given the length of the cable that is needed to connect the points over that route. Note that there may exist many possible routes between two given points. It is assumed that the given possible routes connect (directly or indirectly) each two points in the area.Your task is to design the network for the area, so that there is a connection (direct or indirect) between every two points (i.e., all the points are interconnected, but not necessarily by a direct cable), and that the total length of the used cable is minimal.

Input

The input file consists of a number of data sets. Each data set defines one required network. The first line of the set contains two integers: the first defines the number P of the given points, and the second the number R of given routes between the points. The following R lines define the given routes between the points, each giving three integer numbers: the first two numbers identify the points, and the third gives the length of the route. The numbers are separated with white spaces. A data set giving only one number P=0 denotes the end of the input. The data sets are separated with an empty line.The maximal number of points is 50. The maximal length of a given route is 100. The number of possible routes is unlimited. The nodes are identified with integers between 1 and P (inclusive). The routes between two points i and j may be given as i j or as j i.

Output

For each data set, print one number on a separate line that gives the total length of the cable used for the entire designed network.

Sample Input

1 02 31 2 372 1 171 2 683 71 2 192 3 113 1 71 3 52 3 893 1 911 2 325 71 2 52 3 72 4 84 5 113 5 101 5 64 2 120

Sample Output

0171626这算是非常简单的入门题了,,有重边,估计大家都能看的出来。prim代码:#include <stdio.h>#include <string.h>#define MAX 55#define INF 1000000000int graph[MAX][MAX] ;bool visited[MAX];int prim(int n){int lowCost[MAX] ;for(int i = 1 ; i <= n ; ++i){lowCost[i] = graph[1][i] ; }memset(visited,false,sizeof(visited)) ;visited[1] = true ;lowCost[0] = INF ;int sum = 0 ;for(int i = 1 ; i < n ; ++i){int index = 0 ;for(int j = 1 ; j <= n ; ++j){if(!visited[j] && lowCost[index]>lowCost[j]){index = j ;}}if(index == 0)break ;sum += lowCost[index] ;visited[index] = true ;for(int j = 1 ; j <= n ; ++j){if(!visited[j] && lowCost[j]>graph[index][j]){lowCost[j] = graph[index][j] ;}}}return sum ;}int main(){int n , m ;while(scanf("%d",&n) && n){scanf("%d",&m);for(int i = 0 ; i < MAX ; ++i){graph[i][i] = INF ;for(int j = 0 ; j < i ; ++j){graph[i][j] = graph[j][i] = INF ;}}for(int i = 0 ; i < m ; ++i){int x, y , len ;scanf("%d%d%d",&x,&y,&len);if(graph[x][y]>len){graph[x][y] = graph[y][x] = len ;}}int sum = prim(n) ;printf("%d\n",sum) ;}return 0 ;}kruskal代码:#include <cstdio>#include <algorithm>#define MAX 100000using namespace std ;struct Edge{int x , y , w ;}edge[MAX];int f[MAX] ;void init(int n){for(int i = 0 ; i <= n ; ++i){f[i] = i ;}}int find(int x){int r = x ;while(r != f[r]){r = f[r] ;}int t ;while(x != r){t = f[x] ;f[x] = r ;x = t ;}return r ;}bool cmp(const Edge &a , const Edge &b){return a.w<b.w ;}int kruskal(int n){sort(edge,edge+n,cmp);int sum = 0 ;for(int i = 0 ; i < n ; ++i){int fx = find(edge[i].x) , fy = find(edge[i].y) ;if(fx != fy){sum += edge[i].w ;f[fx] = fy ;}}return sum ;}int main(){int n , m ;while(~scanf("%d",&n) && n){scanf("%d",&m);init(n) ; for(int i = 0 ; i < m ; ++i){scanf("%d%d%d",&edge[i].x,&edge[i].y,&edge[i].w) ;}printf("%d\n",kruskal(m)) ;}return 0 ;}与君共勉

人生没有停靠站,自我本身永远是一个出发点。

poj1287 Networking 最小生成树模板题。prim+kruskal算法AC

相关文章:

你感兴趣的文章:

标签云: