301040: CF196E. Opening Portals

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Opening Portals

题意翻译

给出一个有$n$个结点,$m$条带权边的无向连通图,边权为经过这条边所需的时间。有$k$个点设有传送门,初始时,传送门都关闭。你从$1$号点出发,每当你到达一个已开启传送门的点,那个传送门就会永久开启,你可以从一个开启的传送门花费$0$时间到达另一个开启的传送门。求开启所有传送门所需的最小时间

题目描述

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 $ n $ cities connected by $ m $ bidirectional roads of different lengths so that it is possible to get from any city to any other one. There are portals in $ k $ 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 $ 1 $ . 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 $ n $ and $ m $ ( $ 1<=n<=10^{5} $ , $ 0<=m<=10^{5} $ ) that show how many cities and roads are in the game. Each of the next $ m $ lines contains the description of a road as three space-separated integers $ x_{i} $ , $ y_{i} $ , $ w_{i} $ ( $ 1<=x_{i},y_{i}<=n $ , $ x_{i}≠y_{i} $ , $ 1<=w_{i}<=10^{9} $ ) — the numbers of the cities connected by the $ i $ -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 $ k $ ( $ 1<=k<=n $ ) — the number of portals. The next line contains $ k $ space-separated integers $ p_{1} $ , $ p_{2} $ , ..., $ p_{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 $ 2 $ , open a portal there, then go to city $ 3 $ , open a portal there, teleport back to city $ 2 $ and finally finish the journey in city $ 4 $ .

Input

题意翻译

给出一个有$n$个结点,$m$条带权边的无向连通图,边权为经过这条边所需的时间。有$k$个点设有传送门,初始时,传送门都关闭。你从$1$号点出发,每当你到达一个已开启传送门的点,那个传送门就会永久开启,你可以从一个开启的传送门花费$0$时间到达另一个开启的传送门。求开启所有传送门所需的最小时间

加入题单

算法标签: