cf500D New Year Santa Network

D. New Year Santa Network

time limit per test 2 seconds

memory limit per test 256 megabytes

input standard input

output standard output

New Year is coming in Tree World! In this world, as the name implies, there are n cities connected by n - 1 roads, and for any two distinct cities there always exists a path between them. The cities are numbered by integers from 1 to n, and the roads are numbered by integers from 1 to n - 1. Let‘s define d(u, v) as total length of roads on the path between city u and city v.

As an annual event, people in Tree World repairs exactly one road per year. As a result, the length of one road decreases. It is already known that in the i-th year, the length of the ri-th road is going to become wi, which is shorter than its length before. Assume that the current year is year 1.

Three Santas are planning to give presents annually to all the children in Tree World. In order to do that, they need some preparation, so they are going to choose three distinct citiesc1c2c3 and make exactly one warehouse in each city. The k-th (1 ≤ k ≤ 3) Santa will take charge of the warehouse in city ck.

It is really boring for the three Santas to keep a warehouse alone. So, they decided to build an only-for-Santa network! The cost needed to build this network equals to d(c1, c2) + d(c2, c3) + d(c3, c1) dollars. Santas are too busy to find the best place, so they decided to choose c1, c2, c3 randomly uniformly over all triples of distinct numbers from 1 to n. Santas would like to know the expected value of the cost needed to build the network.

However, as mentioned, each year, the length of exactly one road decreases. So, the Santas want to calculate the expected after each length change. Help them to calculate the value.

Input

The first line contains an integer n (3 ≤ n ≤ 105) — the number of cities in Tree World.

Next n - 1 lines describe the roads. The i-th line of them (1 ≤ i ≤ n - 1) contains three space-separated integers aibili (1 ≤ ai, bi ≤ nai ≠ bi, 1 ≤ li ≤ 103), denoting that the i-th road connects cities ai and bi, and the length of i-th road is li.

The next line contains an integer q (1 ≤ q ≤ 105) — the number of road length changes.

Next q lines describe the length changes. The j-th line of them (1 ≤ j ≤ q) contains two space-separated integers rjwj (1 ≤ rj ≤ n - 1, 1 ≤ wj ≤ 103). It means that in the j-th repair, the length of the rj-th road becomes wj. It is guaranteed that wj is smaller than the current length of the rj-th road. The same road can be repaired several times.

Output

Output q numbers. For each given change, print a line containing the expected cost needed to build the network in Tree World. The answer will be considered correct if its absolute and relative error doesn‘t exceed 10 - 6.

Sample test(s)

Input

32 3 51 3 351 42 21 22 11 1

Output

14.000000000012.00000000008.00000000006.00000000004.0000000000

Input

61 5 35 3 26 1 71 4 45 2 351 22 13 54 15 2

Output

19.600000000018.600000000016.600000000013.600000000012.6000000000

Note

Consider the first sample. There are 6 triples: (1, 2, 3), (1, 3, 2), (2, 1, 3), (2, 3, 1), (3, 1, 2), (3, 2, 1). Because n = 3, the cost needed to build the network is always d(1, 2) + d(2, 3) + d(3, 1) for all the triples. So, the expected cost equals to d(1, 2) + d(2, 3) + d(3, 1).

题意是在一棵树上随机取三点c1,c2,c3,计算dist(c1,c2)+dist(c1,c3)+dist(c2,c3)的期望。还有带边权修改的,每一个修改输出一个答案

一开始看懂题意我都吓傻了……不过很快意识到大概是有什么结论

然后开始随便乱画……最后发现把这三条路径描出来,每条边都恰好被经过两次。这个理论证明我不会诶,不过事实证明这是对的

再考虑怎么统计答案

树的形态是不变的,所以可以直接搞出所有方案中每条边被经过的次数,并且这个数字是不会变的

考虑一条边到底在统计的时候被统计几次:显然路径有经过这条边,那么边的两端的两块联通块都有至少一个点。只可能是一边一个一边两个了

然后排列组合随便搞搞就好了

修改就更简单了,直接在答案里减去(原来的权值-修改的值)*统计次数,这个O(1)就完了

#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<set>
#include<map>
#include<ctime>
#include<iomanip>
#define LL long long
#define inf 0x7ffffff
#define N 1000010
using namespace std;
inline LL read()
{
    LL x=0,f=1;char ch=getchar();
    while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();}
    while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();}
    return x*f;
}
LL n,m,cnt;
long double ans,todel;
struct edge{
	LL from,to,next,v;
	LL rep;
}e[4*N];
LL son[N],head[N],dep[N];
bool mrk[N];
inline void ins(LL u,LL v,LL w)
{
	e[++cnt].to=v;
	e[cnt].from=u;
	e[cnt].v=w;
	e[cnt].next=head[u];
	head[u]=cnt;
}
inline void insert(LL u,LL v,LL w)
{
	ins(u,v,w);
	ins(v,u,w);
}
inline void dfs(LL x,LL d)
{
	if (mrk[x])return;
	mrk[x]=1;son[x]=1;dep[x]=d;
	for (LL i=head[x];i;i=e[i].next)
		if (!mrk[e[i].to])
		{
			dfs(e[i].to,d+1);
			son[x]+=son[e[i].to];
		}
}
int main()
{
	n=read();todel=(long double)n*(n-1)*(n-2)/6.0;
	for (LL i=1;i<n;i++)
	{
		LL x=read(),y=read(),z=read();
		insert(x,y,z);
	}
	dfs(1,1);
	for (LL i=2;i<=cnt;i+=2)
	{
		LL now=i/2,x=e[i].from,y=e[i].to;
		if (dep[x]>dep[y])swap(x,y);
		LL s1=n-son[y],s2=son[y];
		e[i].rep+=(long double)s1*s2*(s2-1)+s2*s1*(s1-1);
		ans+=(long double)e[i].rep*e[i].v;
	}
	m=read();
	cout<<setiosflags(ios::fixed)<<setprecision(10);
	for (LL i=1;i<=m;i++)
	{
		LL x=read(),y=read();
		LL now=x*2;
		ans-=(long double)(e[now].v-y)*e[now].rep;
		e[now].v=y;
		cout<<ans/todel<<endl;
	}
	return 0;
}
时间: 2024-10-01 06:49:39

cf500D New Year Santa Network的相关文章

Good Bye 2014 D. New Year Santa Network

D. New Year Santa Network time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output New Year is coming in Tree World! In this world, as the name implies, there are n cities connected by n?-?1 roads,

Codeforces 500D New Year Santa Network(树 + 计数)

D. New Year Santa Network time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output New Year is coming in Tree World! In this world, as the name implies, there are n cities connected by n - 1 roads,

CF 500D New Year Santa Network tree 期望 好题

New Year is coming in Tree World! In this world, as the name implies, there are n cities connected by n - 1 roads, and for any two distinct cities there always exists a path between them. The cities are numbered by integers from 1 to n, and the roads

codeforces 500D - New Year Santa Network (树形DP+组合数学)

题目地址:http://codeforces.com/contest/500/problem/D 这题是要先求出每条边出现的次数,然后除以总次数,这样期望就求出来了.先用树形DP求出每个边左右两端总共有多少个点,然后用组合数学公式就可以推出来了. 代码如下: #include <iostream> #include <string.h> #include <math.h> #include <queue> #include <algorithm>

D. New Year Santa Network

http://codeforces.com/contest/500/problem/D https://blog.csdn.net/ShiAokai/article/details/42921885?locationNum=8&fps=1 1 import java.util.ArrayList; 2 import java.util.Scanner; 3 4 public class Main { 5 6 static int n; 7 static long[] cnt = new long

Intro to Filtering with Network Monitor 3.0

https://blogs.technet.microsoft.com/netmon/2006/10/17/intro-to-filtering-with-network-monitor-3-0/ https://social.technet.microsoft.com/wiki/contents/articles/1130.network-monitor-ipv4-filtering.aspx https://blogs.technet.microsoft.com/messageanalyze

Real-time storage area network

A cluster of computing systems is provided with guaranteed real-time access to data storage in a storage area network. Processes issue request for bandwidth reservation which are initially handled by a daemon on the same node as the requesting proces

ubuntu开机出现waiting for network configuration

ubuntu启动时,出现waiting for network configuration,waiting up to 60 more seconds for network configuration等,进入桌面后网络图标也不见了 解决方法,首先在 /etc/network/interfaces 文件里面无关的都删去,留下lo这个 然后再到/etc/init/failsafe.conf文件里将sleep59改成5或10,sleep50意思是等待59秒

Linux 性能监控 : CPU 、Memory 、 IO 、Network

一.CPU 1.良好状态指标 CPU利用率:User Time <= 70%,System Time <= 35%,User Time + System Time <= 70% 上下文切换:与CPU利用率相关联,如果CPU利用率状态良好,大量的上下文切换也是可以接受的 可运行队列:每个处理器的可运行队列<=3个线程 2.监控工具 vmstat $ vmstat 1 procs -----------memory---------- ---swap-- -----io---- --s