307705: CF1399E2. Weights Division (hard version)

Memory Limit:256 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Weights Division (hard version)

题意翻译

给出一个结点数量为 $n$ 的边带权的有根树,树的根结点为 $1$。你可以进行以下操作。 * 选定任意一条权值为 $w_i$ 的边,使 $w_i \gets \lfloor \frac{w_i}{2} \rfloor$,花费为 $c_i$ 且 $c_i \in \{1, 2\}$。 定义 $w(i,j)$ 为结点 $i$ 到结点 $j$ 的路径边权和。对于每组测试数据,你需要回答最小的花费,使得 $\sum\limits_{v\in leaves}w(root,v)\leq S$,其中 $leaves$ 为叶子结点编号的集合。

题目描述

Easy and hard versions are actually different problems, so we advise you to read both statements carefully. You are given a weighted rooted tree, vertex $ 1 $ is the root of this tree. Also, each edge has its own cost. A tree is a connected graph without cycles. A rooted tree has a special vertex called the root. A parent of a vertex $ v $ is the last different from $ v $ vertex on the path from the root to the vertex $ v $ . Children of vertex $ v $ are all vertices for which $ v $ is the parent. A vertex is a leaf if it has no children. The weighted tree is such a tree that each edge of this tree has some weight. The weight of the path is the sum of edges weights on this path. The weight of the path from the vertex to itself is $ 0 $ . You can make a sequence of zero or more moves. On each move, you select an edge and divide its weight by $ 2 $ rounding down. More formally, during one move, you choose some edge $ i $ and divide its weight by $ 2 $ rounding down ( $ w_i := \left\lfloor\frac{w_i}{2}\right\rfloor $ ). Each edge $ i $ has an associated cost $ c_i $ which is either $ 1 $ or $ 2 $ coins. Each move with edge $ i $ costs $ c_i $ coins. Your task is to find the minimum total cost to make the sum of weights of paths from the root to each leaf at most $ S $ . In other words, if $ w(i, j) $ is the weight of the path from the vertex $ i $ to the vertex $ j $ , then you have to make $ \sum\limits_{v \in leaves} w(root, v) \le S $ , where $ leaves $ is the list of all leaves. You have to answer $ t $ independent test cases.

输入输出格式

输入格式


The first line of the input contains one integer $ t $ ( $ 1 \le t \le 2 \cdot 10^4 $ ) — the number of test cases. Then $ t $ test cases follow. The first line of the test case contains two integers $ n $ and $ S $ ( $ 2 \le n \le 10^5; 1 \le S \le 10^{16} $ ) — the number of vertices in the tree and the maximum possible sum of weights you have to obtain. The next $ n-1 $ lines describe edges of the tree. The edge $ i $ is described as four integers $ v_i $ , $ u_i $ , $ w_i $ and $ c_i $ ( $ 1 \le v_i, u_i \le n; 1 \le w_i \le 10^6; 1 \le c_i \le 2 $ ), where $ v_i $ and $ u_i $ are vertices the edge $ i $ connects, $ w_i $ is the weight of this edge and $ c_i $ is the cost of this edge. It is guaranteed that the sum of $ n $ does not exceed $ 10^5 $ ( $ \sum n \le 10^5 $ ).

输出格式


For each test case, print the answer: the minimum total cost required to make the sum of weights paths from the root to each leaf at most $ S $ .

输入输出样例

输入样例 #1

4
4 18
2 1 9 2
3 2 4 1
4 1 1 2
3 20
2 1 8 1
3 1 7 2
5 50
1 3 100 1
1 5 10 2
2 3 123 2
5 4 55 1
2 100
1 2 409 2

输出样例 #1

0
0
11
6

Input

题意翻译

给出一个结点数量为 $n$ 的边带权的有根树,树的根结点为 $1$。你可以进行以下操作。 * 选定任意一条权值为 $w_i$ 的边,使 $w_i \gets \lfloor \frac{w_i}{2} \rfloor$,花费为 $c_i$ 且 $c_i \in \{1, 2\}$。 定义 $w(i,j)$ 为结点 $i$ 到结点 $j$ 的路径边权和。对于每组测试数据,你需要回答最小的花费,使得 $\sum\limits_{v\in leaves}w(root,v)\leq S$,其中 $leaves$ 为叶子结点编号的集合。

加入题单

算法标签: