hdu 6201 树形DP

本问题描述了一位商人需要在不同的城市之间买书再卖书以获取最大利润的场景。通过给定的城市之间的距离和书籍价格,利用树形DP算法找到最佳的买卖城市组合。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

transaction transaction transaction

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 132768/132768 K (Java/Others)

Problem 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  i t  city. Kelukin will take taxi, whose price is  1 yuan  per km and this fare cannot be ignored.
There are  n1  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  ( 1T10 ) , the number of test cases. 
For each test case:
first line contains an integer  n  ( 2n100000 ) means the number of cities;
second line contains  n  numbers, the  i th  number means the prices in  i th  city;  (1Price10000)  
then follows  n1  lines, each contains three numbers  x y  and  z  which means there exists a road between  x  and  y , the distance is  z km   (1z1000)
 

Output
For each test case, output a single number in a line: the maximum money he can get.
 

Sample Input
  
1 4 10 40 15 30 1 2 30 1 3 2 3 4 10
 

Sample Output
  
8
 

Source

题意:树,给出n个点,点权val[i],n-1条边,边权w,求 最长的S->T权重 = val[s] - val[T] -  dist[S->T]

典型的树形DP,对于U,  子树V ,  保存到V的起点maxStart,终点路径和maxEnd,在U处贪心归并,选最大的maxStart , maxEnd 。


 

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.StringTokenizer;
  
  
public class Main {  
      
    public static void main(String[] args) {  
        new Task().solve();  
    }  
}  
  
  
  
class Task {  
    InputReader in = new InputReader(System.in) ;  
    PrintWriter out = new PrintWriter(System.out) ;  
    
    class Edge{
    	int v , w , next ;
    	Edge(int v , int w ,  int next){
    		this.v = v ;
    		this.w = w ;
    		this.next = next ;
    	}
    }
    int[] head ;
    Edge[] e ;
    int eid ;
    void add(int u , int v , int w){
    	e[eid] = new Edge(v , w , head[u]) ;
    	head[u] = eid++ ;
    }
    int[] val ;
    class Node{
    	int start ;
    	int end ;
    	Node(int start , int end){
    		this.start = start ;
    		this.end = end ;
    	}
    }
    
    int reslut ; 
    Node dfs(int u , int father){
    	int maxStart = val[u] ;
    	int maxEnd = -val[u] ;
    	for(int i = head[u] ; i != -1 ; i = e[i].next){
    		int v = e[i].v ;
    		if(v == father){
    			continue ;
    		}
    		Node sonV = dfs(v , u) ;
    		maxStart = Math.max(maxStart  , sonV.start - e[i].w ) ;
    		maxEnd = Math.max(maxEnd  , sonV.end - e[i].w ) ;
    	}
    	reslut = Math.max(reslut , maxStart + maxEnd) ;
    	return new Node(maxStart , maxEnd) ;
    }
      
    void solve(){  
    	int t = in.nextInt() ;
    	while(t-- > 0){
    		int n = in.nextInt() ;
    		val = new int[n+1] ;
    		head = new int[n+1] ;
    		Arrays.fill(head , -1) ;
    		for(int i = 1 ; i <= n ; i++){
    			val[i] = in.nextInt() ;
    		}
    		e = new Edge[n*2+8] ;
    		eid = 0 ;
    		for(int i = 1 ; i < n ; i++){
    			int u = in.nextInt() ;
    			int v = in.nextInt() ;
    			int w = in.nextInt() ;
    			add(u , v , w) ;
    			add(v , u , w) ;
    		}
    		reslut = 0 ;
    		dfs(1, -1) ;
    		out.println(reslut) ;
    	}
        out.flush() ;  
    }  
    
}  
  
class InputReader {      
    public BufferedReader reader;      
    public StringTokenizer tokenizer;      
      
    public InputReader(InputStream stream) {      
        reader = new BufferedReader(new InputStreamReader(stream), 32768);      
        tokenizer = new StringTokenizer("");      
    }      
      
    private void eat(String s) {      
        tokenizer = new StringTokenizer(s);      
    }      
      
    public String nextLine() {       
        try {      
            return reader.readLine();      
        } catch (Exception e) {      
            return null;      
        }      
    }      
      
    public boolean hasNext() {      
        while (!tokenizer.hasMoreTokens()) {      
            String s = nextLine();      
            if (s == null)      
                return false;      
            eat(s);      
        }      
        return true;      
    }      
      
    public String next() {      
        hasNext();      
        return tokenizer.nextToken();      
    }      
      
    public int nextInt() {      
        return Integer.parseInt(next());      
    }      
      
    public int[] nextInts(int n) {      
        int[] nums = new int[n];      
        for (int i = 0; i < n; i++) {      
            nums[i] = nextInt();      
        }      
        return nums;      
    }      
      
    public long nextLong() {      
        return Long.parseLong(next());      
    }      
      
    public double nextDouble() {      
        return Double.parseDouble(next());      
    }      
      
    public BigInteger nextBigInteger() {      
        return new BigInteger(next());      
    }      
      
}      




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值