CF575B.Bribes

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Ruritania is a country with a very badly maintained road network, which is not exactly good news for lorry drivers that constantly have to do deliveries. In fact, when roads are maintained, they become one-way. It turns out that it is sometimes impossible to get from one town to another in a legal way – however, we know that all towns are reachable, though illegally!

Fortunately for us, the police tend to be very corrupt and they will allow a lorry driver to break the rules and drive in the wrong direction provided they receive ‘a small gift’. There is one patrol car for every road and they will request 1000 Ruritanian dinars when a driver drives in the wrong direction. However, being greedy, every time a patrol car notices the same driver breaking the rule, they will charge double the amount of money they requested the previous time on that particular road.

Borna is a lorry driver that managed to figure out this bribing pattern. As part of his job, he has to make KK stops in some towns all over Ruritania and he has to make these stops in a certain order. There are NN towns (enumerated from 1 to NN ) in Ruritania and Borna’s initial location is the capital city i.e. town 1. He happens to know which ones out of the N1N-1 roads in Ruritania are currently unidirectional, but he is unable to compute the least amount of money he needs to prepare for bribing the police. Help Borna by providing him with an answer and you will be richly rewarded.

输入格式

The first line contains NN , the number of towns in Ruritania. The following N1N-1 lines contain information regarding individual roads between towns. A road is represented by a tuple of integers ( aa , bb , xx ), which are separated with a single whitespace character. The numbers aa and bb represent the cities connected by this particular road, and x is either 0 or 1: 0 means that the road is bidirectional, 1 means that only the aba→b direction is legal. The next line contains KK , the number of stops Borna has to make. The final line of input contains K positive integers s1,,sKs_{1},…,s_{K} : the towns Borna has to visit.

  • 1<=N<=1051<=N<=10^{5}
  • 1<=K<=1061<=K<=10^{6}
  • 1<=a,b<=N1<=a,b<=N for all roads
  • for all roads
  • 1<=si<=N1<=s_{i}<=N for all 1<=i<=K1<=i<=K

输出格式

The output should contain a single number: the least amount of thousands of Ruritanian dinars Borna should allocate for bribes, modulo 109+710^{9}+7 .

输入输出样例

  • 输入#1

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

    输出#1

    4
    

说明/提示

Borna first takes the route 151→5 and has to pay 1000 dinars. After that, he takes the route 512345→1→2→3→4 and pays nothing this time. However, when he has to return via 432154→3→2→1→5 , he needs to prepare 3000 (1000+2000) dinars. Afterwards, getting to 2 via 5125→1→2 will cost him nothing. Finally, he doesn't even have to leave town 2 to get to 2, so there is no need to prepare any additional bribe money. Hence he has to prepare 4000 dinars in total.

首页