CF196E.Opening Portals

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Pavel plays a famous computer game. A player is responsible for a whole country and he can travel there freely, complete quests and earn experience.

This country has nn cities connected by mm bidirectional roads of different lengths so that it is possible to get from any city to any other one. There are portals in kk of these cities. At the beginning of the game all portals are closed. When a player visits a portal city, the portal opens. Strange as it is, one can teleport from an open portal to an open one. The teleportation takes no time and that enables the player to travel quickly between rather remote regions of the country.

At the beginning of the game Pavel is in city number 11 . He wants to open all portals as quickly as possible. How much time will he need for that?

输入格式

The first line contains two space-separated integers nn and mm ( 1<=n<=1051<=n<=10^{5} , 0<=m<=1050<=m<=10^{5} ) that show how many cities and roads are in the game.

Each of the next mm lines contains the description of a road as three space-separated integers xix_{i} , yiy_{i} , wiw_{i} ( 1<=xi,yi<=n1<=x_{i},y_{i}<=n , xiyix_{i}≠y_{i} , 1<=wi<=1091<=w_{i}<=10^{9} ) — the numbers of the cities connected by the ii -th road and the time needed to go from one city to the other one by this road. Any two cities are connected by no more than one road. It is guaranteed that we can get from any city to any other one, moving along the roads of the country.

The next line contains integer kk ( 1<=k<=n1<=k<=n ) — the number of portals.

The next line contains kk space-separated integers p1p_{1} , p2p_{2} , ..., pkp_{k} — numbers of the cities with installed portals. Each city has no more than one portal.

输出格式

Print a single number — the minimum time a player needs to open all portals.

Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    3 3
    1 2 1
    1 3 1
    2 3 1
    3
    1 2 3
    

    输出#1

    2
    
  • 输入#2

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

    输出#2

    16
    
  • 输入#3

    4 3
    1 2 1000000000
    2 3 1000000000
    3 4 1000000000
    4
    1 2 3 4
    

    输出#3

    3000000000
    

说明/提示

In the second sample the player has to come to city 22 , open a portal there, then go to city 33 , open a portal there, teleport back to city 22 and finally finish the journey in city 44 .

首页