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.

Example

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

Note

Image illustrates the first sample case. Cities with storage located in and the road representing the answer are darkened.

找出一条边距离最短且连接着一个flour storage,而自身并不是flour storage的地方作为bakery

代码:

#include <bits/stdc++.h>

using namespace std;

int main()
{
int u[],v[],w[];
int vis[] ={};
int n,m,k,d,s = 0x3fffffff;
cin>>n>>m>>k;
for(int i = ;i < m;i ++)
cin>>u[i]>>v[i]>>w[i];
for(int i = ;i < k;i ++)
{
cin>>d;
vis[d] = ;
}
for(int i = ;i < m;i ++)
{
if((vis[u[i]]^vis[v[i]]))
{
if(s > w[i])s = w[i];
}
}
if(s!=0x3fffffff)cout<<s;
else cout<<-;
}

最新文章

  1. HTML的&lt;object&gt;标签 (转)
  2. Android存储
  3. linux socket编程实例
  4. Redis_Jedis使用总结
  5. Unity UGUI RectTransform图解
  6. After install XAMPP
  7. 快速排序法QuickSort
  8. JavaWeb:基于MVC设计模式的一个小案例(一)
  9. java中的TreeMap如何顺序按照插入顺序排序
  10. Zend Studio安装和使用
  11. Oracle全角和半角处理函数
  12. KMP及其改进算法
  13. [20190321]smem的显示缺陷.txt
  14. 一个linux内核编译时遇到的perl语法导致的编译问题解决
  15. Linux关机命令和重启命令
  16. maven groupID 和 ArtifactID的区别与作用
  17. 前端 HTML文档结构介绍
  18. Error launching remote program: No such file or directory
  19. 网卡phy9161A
  20. CC2530串口工作

热门文章

  1. 4.1 Routing -- Introduction
  2. LINUX_RHEl6_DHCP服务器配置
  3. 2018-2019 ICPC, NEERC, Southern Subregional Contest (Online Mirror, ACM-ICPC Rules, Teams Preferred) Solution
  4. uva1391 2-SAT 问题
  5. uva1401 dp+Trie
  6. Flask Web 开发 错误页面自定义
  7. An error occurred: No action handlers found - check JMeterHome and libraries
  8. Html常用标记总结
  9. TypeScript 照猫画虎
  10. Python3基础 print 输出helloworld