zoukankan      html  css  js  c++  java
  • 【POJ】[2631]Roads in the North

    Roads in the North
    Time Limit: 1000MS   Memory Limit: 65536K

    Description

    Building and maintaining roads among communities in the far North is an expensive business. With this in mind, the roads are build such that there is only one route from a village to a village that does not pass through some other village twice. 
    Given is an area in the far North comprising a number of villages and roads among them such that any village can be reached by road from any other village. Your job is to find the road distance between the two most remote villages in the area. 

    The area has up to 10,000 villages connected by road segments. The villages are numbered from 1. 

    Input

    Input to the problem is a sequence of lines, each containing three positive integers: the number of a village, the number of a different village, and the length of the road segment connecting the villages in kilometers. All road segments are two-way.

    Output

    You are to output a single integer: the road distance between the two most remote villages in the area.

    Sample Input

    5 1 6
    1 4 5
    6 3 9
    2 6 8
    6 1 7
    

    Sample Output

    22


    运用DFS求树的直径


    #include<stdio.h>
    #include<string.h>
    int head[10200];
    int headcnt;
    int max,t;
    struct List {
    	int u,v,w;
    	int next;
    } edge[10200];
    void add(int u,int v,int w) {
    	edge[headcnt].u=u;
    	edge[headcnt].v=v;
    	edge[headcnt].w=w;
    	edge[headcnt].next=head[u];
    	head[u]=headcnt++;
    }
    void dfs(int u,int v,int w) {
    	if(max<w)
    		max=w,t=u;
    	for(int i=head[u]; i!=-1; i=edge[i].next) {
    		if(edge[i].v!=v)
    			dfs(edge[i].v,u,w+edge[i].w);
    		}
    }
    int main() {
    	headcnt=0;
    	memset(head,-1,sizeof(head));
    	int u,v,w;
    	while(scanf("%d %d %d",&u,&v,&w)!=EOF) {
    		add(u,v,w);
    		add(v,u,w);
    	}
    	max=0;
    	dfs(1,0,0);
    	dfs(t,0,0);
    	printf("%d
    ",max);
    	return 0;
    }
    



    题目地址:【POJ】[2631]Roads in the North

  • 相关阅读:
    P2351 [SDOI2012]吊灯
    洛谷P1450 [HAOI2008]硬币购物 背包+容斥
    P5110 块速递推-光速幂、斐波那契数列通项
    AT2304 Cleaning
    CSP-S 2020
    CF487E Tourists
    P4334 [COI2007] Policija
    动态逆序对专练
    CF437D The Child and Zoo
    CF1032G Chattering
  • 原文地址:https://www.cnblogs.com/BoilTask/p/12569439.html
Copyright © 2011-2022 走看看