A13734 | Weights Division (hard version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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$ ).
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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted