c语言sscanf函数的用法是什么
276
2022-11-29
HDU 6201 transaction transaction transaction (树形dp)
Description
Kelukin is a businessman. Every day, he travels around cities to do some business. On August 17th, in memory of a great man, citizens will read a book named “the Man Who Changed China”. Of course, Kelukin wouldn’t miss this chance to make money, but he doesn’t have this book. So he has to choose two city to buy and sell. As we know, the price of this book was different in each city. It is ai yuan in it city. Kelukin will take taxi, whose price is 1yuan per km and this fare cannot be ignored.There are n−1 roads connecting n cities. Kelukin can choose any city to start his travel. He want to know the maximum money he can get.
Input
The first line contains an integer T (1≤T≤10) , the number of test cases. For each test case:first line contains an integer n (2≤n≤100000) means the number of cities;second line contains n numbers, the ith number means the prices in ith city; (1≤Price≤10000) then follows n−1 lines, each contains three numbers x, y and z which means there exists a road between x and y, the distance is zkm (1≤z≤1000).
Output
For each test case, output a single number in a line: the maximum money he can get.
Sample Input
1410 40 15 301 2 301 3 23 4 10
Sample Output
8
题意
给一棵树,每个节点都有权值(书的价格),树中的边是消耗,从任意一点买一本书,卖到另一个点,求最大的利益。
思路
树形 dp ,树中任意两点都可以找到其最近公共祖先,且这两点之间的路线一定经过该点。
我们利用这个性质,设 in[x] 代表 x
out[x] 代表 x
则最终的结果便是最大的 in[x]+out[x]
AC 代码
#include
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~