首页 > 其他分享 >AcWing 4706 -- 树形DP/DFS

AcWing 4706 -- 树形DP/DFS

时间:2022-10-16 15:58:13浏览次数:90  
标签:4706 long -- ne dfs back int DFS include

题目描述

4706. 最短路程

思路

dfs代码

#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>

using namespace std;

const int N = 100010, M = N << 1;

typedef pair<int, int> PII;

int n;
long long f[N][2];
vector<PII> e[N];

void dfs(int u, int fa)
{
    long long s = 0;
    for(auto [ne, w] : e[u])
    {
        if(ne == fa)    continue;
        dfs(ne, u);
        f[u][0] += f[ne][0] + w * 2;
        s = max(s, f[ne][0] + w - f[ne][1]);
    }
    f[u][1] = f[u][0] - s;
}

int main()
{
    cin >> n;
    for(int i = 0; i < n - 1; i ++ )
    {
        int a, b, c;
        cin >> a >> b >> c;
        e[a].push_back({b, c});
        e[b].push_back({a, c});
    }
    
    dfs(1, -1);
    cout << f[1][1] << endl;
    
    return 0;
}

树形dp代码

#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>

using namespace std;

const int N = 100010, M = N << 1;

typedef pair<int, int> PII;

int n;
long long f[N][2];
vector<PII> e[N];

void dfs(int u, int fa)
{
    long long s = 0;
    for(auto [ne, w] : e[u])
    {
        if(ne == fa)    continue;
        dfs(ne, u);
        f[u][0] += f[ne][0] + w * 2;
        s = max(s, f[ne][0] + w - f[ne][1]);
    }
    f[u][1] = f[u][0] - s;
}

int main()
{
    cin >> n;
    for(int i = 0; i < n - 1; i ++ )
    {
        int a, b, c;
        cin >> a >> b >> c;
        e[a].push_back({b, c});
        e[b].push_back({a, c});
    }
    
    dfs(1, -1);
    cout << f[1][1] << endl;
    
    return 0;
}

借鉴

树形dp
dfs

标签:4706,long,--,ne,dfs,back,int,DFS,include
From: https://www.cnblogs.com/ALaterStart/p/16796331.html

相关文章

  • Persistent data structure 不可变数据结构
    持久性变数据不要和持久储存相混淆在计算机中持久性数据或非临时数据是一种数据结构,在修改时始终保持其自身的先前版本。这些数据实际上是不可变的,因为对这类数据操作不会......
  • 实验1
    实验一  #include<stdio.h>intmain(){printf("O\n");printf("<H>\n");printf("II\n");printf("O\n");printf("<H>\n");printf("II\n");return......
  • 01 计算机概要与技术 | 计算机组成原理
    1.程序概念入门1.软件的层次结构层次结构操作系统的作用处理基本的输入和输出分配外存和内存为多个应用程序提供共享计算机资源的服务2.从高级语言到硬件......
  • 35.搜索插入位置
    1.题目描述给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。请必须使用时间复杂度为O(logn)......
  • 【悼念】TI-RSLK自动循迹小车
    @目录前言展示一、总体功能描述1.1驱动1.2碰撞1.3变速1.4循迹行进二、模块功能设计2.1TI-RLSK驱动基本功能设计(1)驱动基本功能设计图(2)驱动基本功能设计思路2.2TI-RLSK......
  • Day1
    Markdown学习二级标题字体HelloWorld!HelloWorld!HelloWorld!引用选择狂神说Java,走向人生巅峰分割线图片超链接点击跳转列表表格     ......
  • ls的实现
    1.代码include<stdio.h>include<sys/types.h>include<sys/stat.h>include<fcntl.h>include<unistd.h>include<stdlib.h>include<errno.h>include<dirent.h......
  • 端口冲突的解决办法
    问题与解决AddressalreadyinuseCentos8netstat-apn|grepps-ef|grep8000kill-9PIDsetsockoptWindows查看指定端口netstat-aon|findstr“8001”......
  • P8587 新的家乡
    https://www.luogu.com.cn/problem/P8587模拟黄色题                 思路:直接枚举高度相同的柱子的高度,枚举过程中统计个数,枚......
  • Latex出错总结(待续)
    1.当Latex套用模板出现.eps文件未找到i)解释:在Windows下使用pdflatex编译时,所有使用.eps文件的地方都会得到一条错误信息:!LaTexError:Unknowngraphicsextension:.......