• LightOJ--1094-- Farthest Nodes in a Tree(树的直径裸题)


    Time Limit: 2000MS Memory Limit: 32768KB 64bit IO Format: %lld & %llu

    Submit Status

    Description

    Given a tree (a connected graph with no cycles), you have to find the farthest nodes in the tree. The edges of the tree are weighted and undirected. That means you have to find two nodes in the tree whose distance is maximum amongst all nodes.

    Input

    Input starts with an integer T (≤ 10), denoting the number of test cases.

    Each case starts with an integer n (2 ≤ n ≤ 30000) denoting the total number of nodes in the tree. The nodes are numbered from 0 to n-1. Each of the next n-1 lines will contain three integers u v w (0 ≤ u, v < n, u ≠ v, 1 ≤ w ≤ 10000) denoting that node u and v are connected by an edge whose weight is w. You can assume that the input will form a valid tree.

    Output

    For each case, print the case number and the maximum distance.

    Sample Input

    2

    4

    0 1 20

    1 2 30

    2 3 50

    5

    0 2 20

    2 1 10

    0 3 29

    0 4 50

    Sample Output

    Case 1: 100

    Case 2: 80

    Hint

    Source

    Problem Setter: Jane Alam Jan 

    #include<stdio.h>
    #include<iostream>
    #include<queue>
    #include<string.h>
    #include<algorithm>
    using namespace std;
    #define MAXN 30000+10
    #define MAXM 900000+10
    #define INF 0x3f3f3f
    int n,cnt,head[MAXN],vis[MAXN],dis[MAXN];
    int ans,sx;
    struct node
    {
    	int u,v;
    	int val,next;
    }edge[MAXM];
    void add(int u,int v,int val)
    {
    	node E={u,v,val,head[u]};
    	edge[cnt]=E;
    	head[u]=cnt++;
    }
    void bfs(int x)
    {
    	queue<int>q;
    	ans=0;
    	memset(vis,0,sizeof(vis));
    	memset(dis,0,sizeof(dis));
    	q.push(x);
    	vis[x]=1;
    	while(!q.empty())
    	{
    		int u=q.front();
    		q.pop();
    		for(int i=head[u];i!=-1;i=edge[i].next)
    		{
    			node E=edge[i];
    			if(!vis[E.v]&&dis[E.v]<dis[u]+E.val)
    			{
    				vis[E.v]=1;
    				dis[E.v]=dis[u]+E.val;
    				q.push(E.v);
    				if(dis[E.v]>ans)
    				{
    					ans=dis[E.v];
    					sx=E.v;
    				}
    			}
    		}
    	}
    }
    int main()
    {
    	int t;
    	int k=1;
    	cin>>t;
    	while(t--)
    	{
    		cin>>n;
    		cnt=0;
    		memset(head,-1,sizeof(head));
    		int a,b,c;
    		for(int i=1;i<n;i++)
    		{
    			scanf("%d%d%d",&a,&b,&c);
    			a++,b++;
    			add(a,b,c);
    			add(b,a,c);
    		}
    		sx=1;
    		bfs(1);
    		bfs(sx);
    		printf("Case %d: %d
    ",k++,ans);
    	}
    	return 0;
    }


  • 相关阅读:
    关于Log4j的初始化
    Golang-interface(四 反射)
    JavaScript学习总结-技巧、有用函数、简洁方法、编程细节
    玩转iOS开发
    小谈一下Java I/O
    [ACM] 最短路算法整理(bellman_ford , SPFA , floyed , dijkstra 思想,步骤及模板)
    已超过了锁请求超时时段。 (Microsoft SQL Server,错误: 1222)
    计数排序
    跟我学solr---吐槽一下,我的文章被抄袭啦
    Navicat11全系列激活工具和使用方法
  • 原文地址:https://www.cnblogs.com/playboy307/p/5273514.html
Copyright © 2020-2023  润新知