【codeforcse 707B Bakery】
发布日期:2021-11-04 12:58:52 浏览次数:1 分类:技术文章

本文共 3102 字,大约阅读时间需要 10 分钟。

Bakery

Masha wants to open her own bakery and bake muffins in one of the n cities numbered from 1 to n. There are m bidirectional roads, each of whose connects some pair of cities.

To bake muffins in her bakery, Masha needs to establish flour supply from some storage. There are only k storages, located in different cities numbered a1, a2, …, ak.

Unforunately the law of the country Masha lives in prohibits opening bakery in any of the cities which has storage located in it. She can open it only in one of another n - k cities, and, of course, flour delivery should be paid — for every kilometer of path between storage and bakery Masha should pay 1 ruble.

Formally, Masha will pay x roubles, if she will open the bakery in some city b (ai ≠ b for every 1 ≤ i ≤ k) and choose a storage in some city s (s = aj for some 1 ≤ j ≤ k) and b and s are connected by some path of roads of summary length x (if there are more than one path, Masha is able to choose which of them should be used).

Masha is very thrifty and rational. She is interested in a city, where she can open her bakery (and choose one of k storages and one of the paths between city with bakery and city with storage) and pay minimum possible amount of rubles for flour delivery. Please help Masha find this amount.

Input

The first line of the input contains three integers n, m and k (1 ≤ n, m ≤ 105, 0 ≤ k ≤ n) — the number of cities in country Masha lives in, the number of roads between them and the number of flour storages respectively.

Then m lines follow. Each of them contains three integers u, v and l (1 ≤ u, v ≤ n, 1 ≤ l ≤ 109, u ≠ v) meaning that there is a road between cities u and v of length of l kilometers .

If k > 0, then the last line of the input contains k distinct integers a1, a2, …, ak (1 ≤ ai ≤ n) — the number of cities having flour storage located in. If k = 0 then this line is not presented in the input.

Output

Print the minimum possible amount of rubles Masha should pay for flour delivery in the only line.

If the bakery can not be opened (while satisfying conditions) in any of the n cities, print  - 1 in the only line.

Examples

input
5 4 2
1 2 5
1 2 3
2 3 4
1 4 10
1 5
output
3
input
3 1 1
1 2 3
3
output
-1

#include
#include
#include
using namespace std;const int INF=0x3f3f3f3f;struct node{ int x,y,val,next;}st[200022];int vis[100011];int head[100011];int dp[100011],num;void add(int fx,int fy,int fl){ st[num].x=fx; st[num].y=fy; st[num].val=fl; st[num].next=head[fx]; head[fx]=num++;}int main(){ int w,N,M,K,a,b,c,j,i,ans; scanf("%d%d%d",&N,&M,&K); num=0; memset(head,-1,sizeof(head)); memset(vis,0,sizeof(vis)); for(i=1;i<=M;i++) { scanf("%d%d%d",&a,&b,&c); add(a,b,c); add(b,a,c); } for(i=1;i<=K;i++) { scanf("%d",&dp[i]); vis[dp[i]]=1; } ans=INF; for(i=1;i<=K;i++) { for(j=head[dp[i]];j!=-1;j=st[j].next) { w=st[j].y; if(!vis[w]) ans=min(ans,st[j].val); } } if(ans==INF) printf("-1\n"); else printf("%d\n",ans); return 0;}

转载地址:https://blog.csdn.net/WYK1823376647/article/details/52274209 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:【codeforces 707A Brain's Photos】
下一篇:【codeforces 707C Pythagorean Triples】

发表评论

最新留言

能坚持,总会有不一样的收获!
[***.219.124.196]2024年04月15日 21时55分49秒