CF1621H.Trains and Airplanes

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Railway network of one city consists of nn stations connected by n1n-1 roads. These stations and roads forms a tree. Station 11 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)dist(v) as the time that trains spend to get from the station vv to the station 11 .

This railway network is splitted into zones named by first kk capital latin letters. The zone of the ii -th station is ziz_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 vv to station 11 happends:

  • At the moment 00 , tourist enters the train that follows directly from the station vv to the station 11 . The trip will last for dist(v)dist(v) minutes.

  • Tourist can buy tickets for any subset of zones at any moment. Ticket for zone ii costs passipass_i euro.

  • Every TT minutes since the start of the trip (that is, at the moments T,2T,T, 2T, \ldots ) the control system will scan tourist. If at the moment of scan tourist is in the zone ii without zone ii ticket, he should pay fineifine_i euro. Formally, the zone of tourist is determined in the following way:

    • If tourist is at the station 11 , then he already at the city center so he shouldn't pay fine.
    • If tourist is at the station u1u \neq 1 , then he is in the zone zuz_u .
    • If tourist is moving from the station xx to the station yy that are directly connected by road, then he is in the zone zxz_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)f(v) be such cost for station vv .

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

  • 11 ii cc — the cost of ticket in zone ii has changed. Now passipass_i is cc .
  • 22 ii cc — the cost of fine in zone ii has changed. Now fineifine_i is cc .
  • 33 uu — solve the following problem for current values of passpass and finefine :
    • You are given the station uu . Consider all the stations vv that satisfy the following conditions:

      • zv=zuz_v = z_u
      • The station uu is on the path from the station vv to the station 11 .

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

输入格式

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

Each of the next n1n - 1 lines contains three integers viv_i , uiu_i , tit_i ( 1vi,uin,1ti1091 \leq v_i, u_i \leq n, 1 \leq t_i \leq 10^9 ) — the ends of the ii -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 kk ( 1k261 \leq k \leq 26 ) — the number of zones.

The next line contains nn symbols z1z2znz_1z_2 \ldots z_nziz_i is the name of the zone of the ii -th station. It is guaranteed that the conditions from the second paragraph are satisfied.

The next line contains kk integers pass1pass_1 , pass2pass_2 , \ldots , passkpass_k ( 1passi1091 \leq pass_i \leq 10^9 ) — initial costs of tickets.

The next line contains kk integers fine1fine_1 , fine2fine_2 , \ldots , finekfine_k ( 1finei1091 \leq fine_i \leq 10^9 ) — initial fines.

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

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

Next qq lines contains queries as described in the statement. It is guaranteed that in the queries of the first and the second type ii is a correct name of the zone (one of the first kk capital latin letters) and 1c1091 \leq c \leq 10^9 , and in the queries of the third type 1un1 \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

说明/提示

Note, that the fine can be cheaper than the pass.

The railway network from the example. Green color is used for stations and roads of zone A, blue color is used for zone B and red color is used for zone D. The integer near each road is time that trains spend to pass it.In the first query, the airport can be located near the station 22 or near the station 44 . During the trip, tourist will always stay in the zone A. He already has the pass for this zone so the answer is 00 .

After the second query, the cost of the pass in the zone A has become 1010 .

In the third query, the airport can be located only near the station 33 . Optimal solution will be to buy the pass for zone A. During the first 33 seconds of trip tourist will be in the zone B. Then he will move to the zone A and will be scanned there on the 44 -th and the 88 -th second of his ride. Since he have a pass for this zone, he won't pay fines.

After the forth query, the fine in the zone A has become 33 .

In the fifth query, the airport can be located only near the station 77 and f(7)=6f(7) = 6 .

In the sixth query, the airport can be located near the station 66 or near the station 88 . Since f(6)=9f(6)=9 and f(8)=6f(8)=6 the answer is 66 .

首页