zoukankan      html  css  js  c++  java
  • Helvetic Coding Contest 2017 online mirror (teams allowed, unrated) J

    Description

    Heidi's friend Jenny is asking Heidi to deliver an important letter to one of their common friends. Since Jenny is Irish, Heidi thinks that this might be a prank. More precisely, she suspects that the message she is asked to deliver states: "Send the fool further!", and upon reading it the recipient will ask Heidi to deliver the same message to yet another friend (that the recipient has in common with Heidi), and so on.

    Heidi believes that her friends want to avoid awkward situations, so she will not be made to visit the same person (including Jenny) twice. She also knows how much it costs to travel between any two of her friends who know each other. She wants to know: what is the maximal amount of money she will waste on travel if it really is a prank?

    Heidi's n friends are labeled 0 through n - 1, and their network of connections forms a tree. In other words, every two of her friends ab know each other, possibly indirectly (there is a sequence of friends starting from a and ending on b and such that each two consecutive friends in the sequence know each other directly), and there are exactly n - 1 pairs of friends who know each other directly.

    Jenny is given the number 0.

    Input

    The first line of the input contains the number of friends n (3 ≤ n ≤ 100). The next n - 1 lines each contain three space-separated integers uvand c (0 ≤ u, v ≤ n - 1, 1 ≤ c ≤ 104), meaning that u and v are friends (know each other directly) and the cost for travelling between u and vis c.

    It is guaranteed that the social network of the input forms a tree.

    Output

    Output a single integer – the maximum sum of costs.

    Examples
    input
    4
    0 1 4
    0 2 2
    2 3 3
    output
    5
    input
    6
    1 2 3
    0 2 100
    1 4 2
    0 3 7
    3 5 10
    output
    105
    input
    11
    1 0 1664
    2 0 881
    3 2 4670
    4 2 1555
    5 1 1870
    6 2 1265
    7 2 288
    8 7 2266
    9 2 1536
    10 6 3378
    output
    5551
    Note

    In the second example, the worst-case scenario goes like this: Jenny sends Heidi to the friend labeled by number 2 (incurring a cost of 100), then friend 2 sends her to friend 1 (costing Heidi 3), and finally friend 1 relays her to friend 4 (incurring an additional cost of 2).

    题意:通俗一点,求树的每条分支的和,把最大的拿出来

    解法:dfs,遍历到叶子就比较一下喽

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 int n;
     4 vector<pair<int,int>>q[1234];
     5 int sum;
     6 int vis[1234];
     7 void dfs(int x,int cot,int pre)
     8 {
     9     if(vis[x])
    10     {
    11         return;
    12     }
    13     vis[x]=1;
    14     for(int i=0; i<q[x].size(); i++)
    15     {
    16         if(vis[q[x][i].first])
    17         {
    18             {
    19                 sum=max(sum,cot);
    20                 continue;
    21             }
    22         }
    23         dfs(q[x][i].first,cot+q[x][i].second,x);
    24     }
    25 }
    26 int main()
    27 {
    28     cin>>n;
    29     for(int i=1; i<n; i++)
    30     {
    31         int v,u,c;
    32         cin>>v>>u>>c;
    33         q[v].push_back({u,c});
    34         q[u].push_back({v,c});
    35     }
    36     dfs(0,0,0);
    37     cout<<sum<<endl;
    38     return 0;
    39 }
  • 相关阅读:
    arcgis要素转json
    GeoJSON.js:221 Uncaught Error: Invalid GeoJSON object.
    深入学习SAP UI5框架代码系列之一:UI5 Module的懒加载机制
    SAP Spartacus简介
    金庸逝世两周年纪念日:一个失意程序员的呓语
    一个用于SAP UI5学习的脚手架应用,没有任何后台API的依赖
    通过最简单的button控件,深入学习SAP UI5框架代码系列之零
    如何使用SAP UI5 SDK网站查询指定控件的属性如何使用
    一行代码将SAP CDS view数据以ALV的方式输出
    演讲预告:一个月的住院经历,我悟到了哪些和程序员职场发展相关的心得
  • 原文地址:https://www.cnblogs.com/yinghualuowu/p/6965494.html
Copyright © 2011-2022 走看看