Codeforces 1399 E1. Weights Division (贪心)

Description
You are given a weighted rooted tree, vertex 1 is the root of this tree.

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 (wi:=⌊wi2⌋).

Your task is to find the minimum number of moves required 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 ∑v∈leavesw(root,v)≤S, where leaves is the list of all leaves.

You have to answer t independent test cases.

Input
The first line of the input contains one integer t (1≤t≤2⋅104) — the number of test cases. Then t test cases follow.

The first line of the test case contains two integers n and S (2≤n≤105;1≤S≤1016) — 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 three integers vi, ui and wi (1≤vi,ui≤n;1≤wi≤106), where vi and ui are vertices the edge i connects and wi is the weight of this edge.

It is guaranteed that the sum of n does not exceed 105 (∑n≤105).

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

Example

input
3
3 20
2 1 8
3 1 7
5 50
1 3 100
1 5 10
2 3 123
5 4 55
2 100
1 2 409
output
0
8
3

Solution

预处理出每个节点子树中的叶子节点个数,就可以算出每条边在答案中要被计算的次数
最后对边贪心,暴力计算即可

Code

#define pb push_back
#define pii pair<int,int>
#define mpp make_pair
#define fi first
#define se second
int n;ll s;
vector<pii>e[maxn];
struct Edge{
	ll k,w;
	inline bool operator <(const Edge&it) const{
		return k*(w - w / 2) < it.k*(it.w - it.w/2); 
	}
};
ll tot = 0;
priority_queue<Edge>q;
int lev[maxn];
void dfs(int u,int fa){
	bool f = false;
	for(auto v : e[u]){
		if(v.fi == fa) continue;
		f = true;
		dfs(v.fi,u);
		q.push((Edge){lev[v.fi],v.se});
		tot += (ll)lev[v.fi] * v.se;
		lev[u] += lev[v.fi];
	}
	if(!f) lev[u] = 1;
}
void init(){
	tot = 0;
	while(!q.empty()) q.pop();
	for(int i = 1;i <= n;++i){
		lev[i] = 0;
		e[i].clear();
	}

}
int main() {
	int T;scanf("%d",&T);
	while(T--){
		scanf("%d %lld",&n,&s);init();
		for(int i = 1,u,v;i < n;++i) {
			ll w;
			scanf("%d%d%lld",&u,&v,&w);
			e[u].pb({v,w}); e[v].pb({u,w});
		}
		dfs(1,-1);
		int cnt = 0;
		while(tot > s){
			Edge now = q.top();q.pop();
			ll uk = now.k, uw = now.w;
			ll vk,vw;
			if(q.empty()) vk = 0, vw = 0;
			else vk = q.top().k, vw = q.top().w;
			while(true){
				if(tot <= s) break;
				if(uk * (uw - uw / 2) < vk * (vw - vw / 2)) break;
				tot -= uk * (uw - uw / 2);
				uw /= 2;
				cnt++;
			}
			q.push((Edge){uk,uw});
		}
		printf("%d\n", cnt);
	}
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值