八中友好教室2

题目

前置题目

八中友好教室1-CSDN博客

思路

这一题与八中友好教室1差不多,但是题目把"最小"改成了"最大"。

那么很简单,我们只要将每一条边都连一次就行了。

代码

cpp 复制代码
#include<bits/stdc++.h>
#define int long long
using namespace std;
struct node
{
  int u,len;
};
vector<node>vec[1000001];
int ans,zi[1000001],n,x,y,len;
inline int read() {int x=0,f=1;char ch=getchar();while(ch<'0'||ch>'9') {if(ch=='-')f=-1;ch=getchar();}while(ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar();return x*f;}
void dfs(int u,int fa)
{
  zi[u] = 1;
  for(int i = 0;i < vec[u].size();i++)
	if(vec[u][i].u != fa)
	{
	  dfs(vec[u][i].u,u);
	  zi[u] += zi[vec[u][i].u];
	  ans += vec[u][i].len * zi[vec[u][i].u];
	}
}
signed main()
{
  cin>>n;
  for(int i = 1;i < n;i++)
  {
	x = read();
    y = read();
    len = read();
	vec[x].push_back({y,len});
	vec[y].push_back({x,len});
  }
  dfs(1,0);
  cout<<ans<<endl;
  return 0;
}
相关推荐
wuweijianlove2 小时前
算法性能的渐近与非渐近行为对比的技术4
算法
_dindong2 小时前
cf1091div2 C.Grid Covering(数论)
c++·算法
AI成长日志2 小时前
【Agentic RL】1.1 什么是Agentic RL:从传统RL到智能体学习
人工智能·学习·算法
黎阳之光3 小时前
黎阳之光:视频孪生领跑者,铸就中国数字科技全球竞争力
大数据·人工智能·算法·安全·数字孪生
skywalker_113 小时前
力扣hot100-3(最长连续序列),4(移动零)
数据结构·算法·leetcode
6Hzlia3 小时前
【Hot 100 刷题计划】 LeetCode 17. 电话号码的字母组合 | C++ 回溯算法经典模板
c++·算法·leetcode
wfbcg3 小时前
每日算法练习:LeetCode 209. 长度最小的子数组 ✅
算法·leetcode·职场和发展
_日拱一卒3 小时前
LeetCode:除了自身以外数组的乘积
数据结构·算法·leetcode
计算机安禾4 小时前
【数据结构与算法】第36篇:排序大总结:稳定性、时间复杂度与适用场景
c语言·数据结构·c++·算法·链表·线性回归·visual studio
SatVision炼金士4 小时前
合成孔径雷达干涉测量(InSAR)沉降监测算法体系
算法