java.lang.Object
g2601_2700.s2646_minimize_the_total_price_of_the_trips.Solution

public class Solution extends Object
2646 - Minimize the Total Price of the Trips.<p>Hard</p> <p>There exists an undirected and unrooted tree with <code>n</code> nodes indexed from <code>0</code> to <code>n - 1</code>. You are given the integer <code>n</code> and a 2D integer array <code>edges</code> of length <code>n - 1</code>, where <code>edges[i] = [a<sub>i</sub>, b<sub>i</sub>]</code> indicates that there is an edge between nodes <code>a<sub>i</sub></code> and <code>b<sub>i</sub></code> in the tree.</p> <p>Each node has an associated price. You are given an integer array <code>price</code>, where <code>price[i]</code> is the price of the <code>i<sup>th</sup></code> node.</p> <p>The <strong>price sum</strong> of a given path is the sum of the prices of all nodes lying on that path.</p> <p>Additionally, you are given a 2D integer array <code>trips</code>, where <code>trips[i] = [start<sub>i</sub>, end<sub>i</sub>]</code> indicates that you start the <code>i<sup>th</sup></code> trip from the node <code>start<sub>i</sub></code> and travel to the node <code>end<sub>i</sub></code> by any path you like.</p> <p>Before performing your first trip, you can choose some <strong>non-adjacent</strong> nodes and halve the prices.</p> <p>Return <em>the minimum total price sum to perform all the given trips</em>.</p> <p><strong>Example 1:</strong></p> <p><img src="https://assets.leetcode.com/uploads/2023/03/16/diagram2.png" alt="" /></p> <p><strong>Input:</strong> n = 4, edges = [[0,1],[1,2],[1,3]], price = [2,2,10,6], trips = [[0,3],[2,1],[2,3]]</p> <p><strong>Output:</strong> 23</p> <p><strong>Explanation:</strong> The diagram above denotes the tree after rooting it at node 2. The first part shows the initial tree and the second part shows the tree after choosing nodes 0, 2, and 3, and making their price half.</p> <p>For the 1<sup>st</sup> trip, we choose path [0,1,3]. The price sum of that path is 1 + 2 + 3 = 6.</p> <p>For the 2<sup>nd</sup> trip, we choose path [2,1]. The price sum of that path is 2 + 5 = 7.</p> <p>For the 3<sup>rd</sup> trip, we choose path [2,1,3]. The price sum of that path is 5 + 2 + 3 = 10.</p> <p>The total price sum of all trips is 6 + 7 + 10 = 23.</p> <p>It can be proven, that 23 is the minimum answer that we can achieve.</p> <p><strong>Example 2:</strong></p> <p><img src="https://assets.leetcode.com/uploads/2023/03/16/diagram3.png" alt="" /></p> <p><strong>Input:</strong> n = 2, edges = [[0,1]], price = [2,2], trips = [[0,0]]</p> <p><strong>Output:</strong> 1</p> <p><strong>Explanation:</strong> The diagram above denotes the tree after rooting it at node 0. The first part shows the initial tree and the second part shows the tree after choosing node 0, and making its price half.</p> <p>For the 1<sup>st</sup> trip, we choose path [0]. The price sum of that path is 1.</p> <p>The total price sum of all trips is 1. It can be proven, that 1 is the minimum answer that we can achieve.</p> <p><strong>Constraints:</strong></p> <ul> <li><code>1 <= n <= 50</code></li> <li><code>edges.length == n - 1</code></li> <li><code>0 <= a<sub>i</sub>, b<sub>i</sub> <= n - 1</code></li> <li><code>edges</code> represents a valid tree.</li> <li><code>price.length == n</code></li> <li><code>price[i]</code> is an even integer.</li> <li><code>1 <= price[i] <= 1000</code></li> <li><code>1 <= trips.length <= 100</code></li> <li><code>0 <= start<sub>i</sub>, end<sub>i</sub> <= n - 1</code></li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details

    • minimumTotalPrice

      public int minimumTotalPrice(int n, int[][] edges, int[] price, int[][] trips)