New Year Santa Network

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 r i-th road is going to become w i, 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 cities c 1c 2c 3 and make exactly one warehouse in each city. The k-th (1 ≤ k ≤ 3) Santa will take charge of the warehouse in city c k.

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(c 1, c 2) + d(c 2, c 3) + d(c 3, c 1) dollars. Santas are too busy to find the best place, so they decided to choose c 1, c 2, c 3 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 a ib il i (1 ≤ a i, b i ≤ na i ≠ b i, 1 ≤ l i ≤ 103), denoting that the i-th road connects cities a i and b i, and the length of i-th road is l i.

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 r jw j (1 ≤ r j ≤ n - 1, 1 ≤ w j ≤ 103). It means that in the j-th repair, the length of the r j-th road becomes w j. It is guaranteed that w j is smaller than the current length of the r j-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.

Examples

input

3
2 3 5
1 3 3
5
1 4
2 2
1 2
2 1
1 1

output

14.0000000000
12.0000000000
8.0000000000
6.0000000000
4.0000000000

input

6
1 5 3
5 3 2
6 1 7
1 4 4
5 2 3
5
1 2
2 1
3 5
4 1
5 2

output

19.6000000000
18.6000000000
16.6000000000
13.6000000000
12.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).

Solution:

#include <cstring>
#include <vector>
#include  <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <memory.h>
#include <cassert>

using namespace std;

const int N = 400010;

vector < pair <int, int> > g[N];
int sz[N];
long long pairs[N];
int n;

void dfs(int v, int pr) {
sz[v] = 1;
int cnt = g[v].size();
for (int j = 0; j < cnt; j++) {
    int u = g[v][j].first;
    if (u == pr) {
      continue;
    }
    dfs(u, v);
    sz[v] += sz[u];
    pairs[g[v][j].second] = sz[u] * 1LL * (n - sz[u]);
  }
}

int from[N], to[N], cost[N];

int main() {
  scanf("%d", &n);
  for (int i = 0; i < n; i++) {
    g[i].clear();
  }
  for (int i = 0; i < n - 1; i++) {
    scanf("%d %d %d", from + i, to + i, cost + i);
    from[i]--; to[i]--;
    g[from[i]].push_back(make_pair(to[i], i));
    g[to[i]].push_back(make_pair(from[i], i));
  }
  dfs(0, -1);
  long long ans = 0;
  for (int i = 0; i < n - 1; i++) {
    ans += pairs[i] * cost[i];
  }
  int tt;
  scanf("%d", &tt);
  double q = 6.0 / n / (n - 1);
  while (tt--) {
    int foo, bar;
    scanf("%d %d", &foo, &bar);
    foo--;
    ans -= pairs[foo] * (cost[foo] - bar);
    cost[foo] = bar;
    printf("%.17f\n", q * ans);
  }
  return 0;
}