In the mathematical discipline of graph theory, the line graph of a simple undirected weighted graph G is another simple undirected weighted graph L(G) that represents the adjacency between every two edges in G

.

Precisely speaking, for an undirected weighted graph G

without loops or multiple edges, its line graph L(G)

is a graph such that:

  • Each vertex of L(G)

represents an edge of G

  • .
  • Two vertices of L(G)

are adjacent if and only if their corresponding edges share a common endpoint in G

  • , and the weight of such edge between this two vertices is the sum of their corresponding edges' weight.

A minimum spanning tree(MST) or minimum weight spanning tree is a subset of the edges of a connected, edge-weighted undirected graph that connects all the vertices together, without any cycles and with the minimum possible total edge weight. That is, it is a spanning tree whose sum of edge weights is as small as possible.

Given a tree G

, please write a program to find the minimum spanning tree of L(G)

.

Input

The first line of the input contains an integer T(1≤T≤1000)

, denoting the number of test cases.

In each test case, there is one integer n(2≤n≤100000)

in the first line, denoting the number of vertices of G

.

For the next n−1

lines, each line contains three integers u,v,w(1≤u,v≤n,u≠v,1≤w≤109), denoting a bidirectional edge between vertex u and v with weight w

.

It is guaranteed that ∑n≤106

.

Output

For each test case, print a single line containing an integer, denoting the sum of all the edges' weight of MST(L(G))

.

Example

Input
2
4
1 2 1
2 3 2
3 4 3
4
1 2 1
1 3 1
1 4 1
Output
8
4

题解:题目给出一张图,让我们将每个边看成一个”点“,两“点”之间的权值为两边权之和。让我们找到这个“点”组成的图(题目命名为”线图“)的最小生成树的权值和。
我们可以从每条边权(即每个点的出边)的贡献入手,首先一个点的出边必须连通,否则构不成最小生成树。
那么对于特定的一个点,首先将其所有出边全部的权值加一遍,然后将其最小的一个边权乘以(这一点的度degree-2)即保证了最优解。(其实这样就是连degree-1条边使得保证最优解)
对于每一个点都这样,跑一遍即可。
#include<iostream>
#include<cstring>
#include<string>
#include<queue>
#include<stack>
#include<algorithm>
#include<stdio.h>
#include<map>
#include<set>
using namespace std;
typedef long long ll;
const int maxn=;
struct node
{
int v,w;
bool operator < (const node &r)const{
return w<r.w;
}
};
vector<node>G[maxn];
int main()
{
ios::sync_with_stdio();
int T;
cin>>T;
while(T--){
int n;
cin>>n;
for(int i=;i<=n;i++)G[i].clear();
for(int i=;i<=n-;i++){
int u,v,w;
cin>>u>>v>>w;
G[u].push_back((node){v,w});
G[v].push_back((node){u,w});
}
ll ans=;
for(int i=;i<=n;i++){
sort(G[i].begin(),G[i].end());
int minn=0x3f3f3f3f;
int degree=G[i].size();
for(int j=;j<degree;j++){
ans+=G[i][j].w;
minn=min(minn,G[i][j].w);
}
ans+=(ll)minn*(degree-);//当degree为1时与上面的ans相互消去
}
cout<<ans<<endl;
}
return ;
}

最新文章

  1. php代码基础
  2. django xadmin 模板的定制
  3. Python入门(二,基础)
  4. strutx.xml中配置文件的讲解
  5. A Tour of Go Switch
  6. JS关闭页面无提示
  7. [Android学习笔记]LayoutInflater的使用
  8. 全面认识Eclipse中JVM内存设置(转)
  9. UNIX环境高级编程——Linux系统调用列表
  10. 业务与IT技术
  11. GL-inet路由器当主控制作WIFI视频小车
  12. Django 简单的使用
  13. 做数据挖掘,就算发 20 几分的 CNS 子刊,也是垃圾!?--转载
  14. [SPOJ375]QTREE - Query on a tree【树链剖分】
  15. python 数据结构之归并排序
  16. PyCharm 2017.2.3 版本在2017年9月7日发布,支持 Docker Compose
  17. 文件IO流
  18. linux环境下python的pdb调试方法
  19. typescript-koa-postgresql 实现一个简单的rest风格服务器 —— 集成 koa
  20. AdjustWindowRect 与 SetWindowPos

热门文章

  1. redis主从复制原理与优化-高可用
  2. 51nod 1421:最大MOD值
  3. 桥接 brctl
  4. (转)Java并发编程:阻塞队列
  5. Spring源码解读:核心类DefaultListableBeanFactory的继承体系
  6. vue项目起步准备
  7. nginx_tcp_proxy代理酸酸乳
  8. 4. react 基础 - 编写 todoList 功能
  9. Aras Innovator获取项目任务序列号
  10. EL表达式和JSTL(一)