题库练习 Trains and Airplanes
← 上一题 下一题 →

A14845 | Trains and Airplanes

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Railway network of one city consists of $n$ stations connected by $n-1$ roads. These stations and roads forms a tree. Station $1$ is a city center. For each road you know the time trains spend to pass this road. You can assume that trains don't spend time on stops. Let's define $dist(v)$ as the time that trains spend to get from the station $v$ to the station $1$ .

This railway network is splitted into zones named by first $k$ capital latin letters. The zone of the $i$ -th station is $z_i$ . City center is in the zone A. For all other stations it is guaranteed that the first station on the road from this station to the city center is either in the same zone or in the zone with lexicographically smaller name. Any road is completely owned by the zone of the most distant end from the city center.

Tourist will arrive at the airport soon and then he will go to the city center. Here's how the trip from station $v$ to station $1$ happends:

- At the moment $0$ , tourist enters the train that follows directly from the station $v$ to the station $1$ . The trip will last for $dist(v)$ minutes.
- Tourist can buy tickets for any subset of zones at any moment. Ticket for zone $i$ costs $pass_i$ euro.
- Every $T$ minutes since the start of the trip (that is, at the moments $T, 2T, \ldots$ ) the control system will scan tourist. If at the moment of scan tourist is in the zone $i$ without zone $i$ ticket, he should pay $fine_i$ euro. Formally, the zone of tourist is determined in the following way:
- If tourist is at the station $1$ , then he already at the city center so he shouldn't pay fine.
- If tourist is at the station $u \neq 1$ , then he is in the zone $z_u$ .
- If tourist is moving from the station $x$ to the station $y$ that are directly connected by road, then he is in the zone $z_x$ .

Note, that tourist can pay fine multiple times in the same zone.

Tourist always selects such way to buy tickets and pay fines that minimizes the total cost of trip. Let $f(v)$ be such cost for station $v$ .

Unfortunately, tourist doesn't know the current values of $pass_i$ and $fine_i$ for different zones and he has forgot the location of the airport. He will ask you queries of $3$ types:

- $1$ $i$ $c$ — the cost of ticket in zone $i$ has changed. Now $pass_i$ is $c$ .
- $2$ $i$ $c$ — the cost of fine in zone $i$ has changed. Now $fine_i$ is $c$ .
- $3$ $u$ — solve the following problem for current values of $pass$ and $fine$ :
- You are given the station $u$ . Consider all the stations $v$ that satisfy the following conditions:
- $z_v = z_u$
- The station $u$ is on the path from the station $v$ to the station $1$ .

Find the value of $\min(f(v))$ over all such stations $v$ with the following assumption: tourist has the ticket for the zone of station $z_u$ .

输入格式

The first line contains the single integer $n$ ( $2 \leq n \leq 2 \cdot 10^5$ ) — the number of stations.

Each of the next $n - 1$ lines contains three integers $v_i$ , $u_i$ , $t_i$ ( $1 \leq v_i, u_i \leq n, 1 \leq t_i \leq 10^9$ ) — the ends of the $i$ -th road and the time it takes a train to pass this road. It is guaranteed that this roads forms a tree.

The next line contains the single integer $k$ ( $1 \leq k \leq 26$ ) — the number of zones.

The next line contains $n$ symbols $z_1z_2 \ldots z_n$ — $z_i$ is the name of the zone of the $i$ -th station. It is guaranteed that the conditions from the second paragraph are satisfied.

The next line contains $k$ integers $pass_1$ , $pass_2$ , $\ldots$ , $pass_k$ ( $1 \leq pass_i \leq 10^9$ ) — initial costs of tickets.

The next line contains $k$ integers $fine_1$ , $fine_2$ , $\ldots$ , $fine_k$ ( $1 \leq fine_i \leq 10^9$ ) — initial fines.

The next line contains the single integer $T$ ( $1 \leq T \leq 10^9$ ) — the time gap between scans of control system.

The next line contains the single integer $q$ ( $1 \leq q \leq 2 \cdot 10^5$ ) — the number of queries.

Next $q$ lines contains queries as described in the statement. It is guaranteed that in the queries of the first and the second type $i$ is a correct name of the zone (one of the first $k$ capital latin letters) and $1 \leq c \leq 10^9$ , and in the queries of the third type $1 \leq u \leq n$ .

输出格式

For each query of the third type print the answer to it.

输入输出样例

输入 #1
8
1 2 7
2 3 4
2 4 3
4 5 1
5 6 6
4 7 10
6 8 6
4
AABABBDB
11 12 10 42
16 15 15 30
4
6
3 2
1 A 10
3 3
2 A 3
3 7
3 6
输出 #1
0
10
6
6
C++ 编辑器
输入
输出