#include<cstring>
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
const int N =1010,M=20010,INF=0x3f3f3f3f;
int n,m,T;
int h[N],e[M],w[M],ne[M],idx;
int dist[N],q[N];
bool st[N];
void add(int a,int b,int c)
{
e[idx]=b,w[idx]=c,ne[idx]=h[a],h[a]=idx++;
}
void spfa()
{
int scnt;
scanf("%d",&scnt);//输入琪琪家车站的数量
memset(dist,0x3f,sizeof dist);
int hh=0,tt=0;
while(scnt--)
{
int u;
scanf("%d",&u); //车站号
dist[u]=0; //当前距离为0
q[tt++]=u; //将当前的车站加入队列
st[u]=true; //将这个车站进行标记
}
while(hh!=tt) //开始循环
{
int t=q[hh++]; //取出队头
if(hh==N) hh=0; //如果队头为N,则将队头变为0,形成循环队列
st[t]=false; //将这个点取消标记
for(int i=h[t];~i;i=ne[i]) //遍历整个邻接表
{
int j=e[i]; //取出
if(dist[j]>dist[t]+w[i]) //如果当前点到琪琪家的距离大于t点到琪琪家的距离+w[i]
{
dist[j]=dist[t]+w[i]; //则进行更新
if(!st[j]) //如果这个点没有被标记
{
q[tt++]=j; //加入队列
if(tt==N)tt=0; //循环队列
st[j]=true; //标记
}
}
}
}
}
int main()
{
while(scanf("%d%d%d",&n,&m,&T)!=-1)
{
memset(h,-1,sizeof h); //初始化邻接表对头。
idx=0;
while(m--)
{
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
add(a,b,c);//单向图
}
spfa();
if(dist[T]==INF) dist[T]=-1; //判断琪琪家到朋友家的距离,如果没有连通为0x3f,否则输出最短路径。
printf("%d\n",dist[T]);
}
return 0;
}