D. Eternal Victory(dfs + 思维)

 

D. Eternal Victory
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Valerian was captured by Shapur. The victory was such a great one that Shapur decided to carve a scene of Valerian's defeat on a mountain. So he had to find the best place to make his victory eternal!

He decided to visit all n cities of Persia to find the best available mountain, but after the recent war he was too tired and didn't want to traverse a lot. So he wanted to visit each of these n cities at least once with smallest possible traverse. Persian cities are connected with bidirectional roads. You can go from any city to any other one using these roads and there is a unique path between each two cities.

All cities are numbered 1 to n. Shapur is currently in the city 1 and he wants to visit all other cities with minimum possible traverse. He can finish his travels in any city.

Help Shapur find how much He should travel.

Input

First line contains a single natural number n (1 ≤ n ≤ 105) — the amount of cities.

Next n - 1 lines contain 3 integer numbers each xiyi and wi (1 ≤ xi, yi ≤ n, 0 ≤ wi ≤ 2 × 104). xi and yi are two ends of a road and wi is the length of that road.

Output

A single integer number, the minimal length of Shapur's travel.

Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preffered to use cout (also you may use %I64d).

Examples
input
3
1 2 3
2 3 4
output
7
input
3
1 2 3
1 3 3
output
9

 

算法:dfs + 思维

题意:给你n个点,n - 1条边,问你从点1开始,需要经过所有的点,所走过的最短路径时多少。

题解:如果你要经过所有的点的话,那就势必有n - 2条路你需要走两遍(自己画图理解一下),因为你每次走到一条路的尽头,你就需要返回来,去走另一条路,只有最后一条路只要走一遍。那么,这样的话,你就只需要求出最长的那一条路,然后用 总路径的权值和 * 2 - 最长子路 就是行了。

 

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <set>
#include <map>
#include <vector>

using namespace std;

#define INF 0x3f3f3f3f
typedef long long ll;

const int maxn = 1e5+7;

vector<pair<ll, ll> > g[maxn];

ll cnt;
int vis[maxn];

void dfs(ll u, ll cal) {
    int len = g[u].size();
    cnt = max(cal, cnt);      //找到最长子路径
    for(int i = 0; i < len; i++) {
        ll v = g[u][i].first;
        ll w = g[u][i].second;
        if(!vis[v]) {
            vis[v] = 1;
            dfs(v, cal + w);
        }
    }
}

int main() {
    int n;
    scanf("%d", &n);
    ll sum = 0;
    for(int i = 1; i < n; i++) {
        ll u, v, w;
        scanf("%I64d %I64d %I64d", &u, &v, &w);
        g[u].push_back(make_pair(v, w));
        g[v].push_back(make_pair(u, w));
        sum += w * 2;   //求出总路径的权值和 * 2
    }
    cnt = 0;
    vis[1] = 1;
    dfs(1LL, 0LL);
    printf("%I64d\n", sum - cnt);
    return 0;
}

 

posted @ 2019-08-13 11:31  不会fly的pig  阅读(263)  评论(0编辑  收藏  举报