CF144D Missile Silos SPFA最短路

D. Missile Silos
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

A country called Berland consists of n cities, numbered with integer numbers from 1 to n. Some of them are connected by bidirectional roads. Each road has some length. There is a path from each city to any other one by these roads. According to some Super Duper Documents, Berland is protected by the Super Duper Missiles. The exact position of the Super Duper Secret Missile Silos is kept secret but Bob managed to get hold of the information. That information says that all silos are located exactly at a distance l from the capital. The capital is located in the city with number s.

The documents give the formal definition: the Super Duper Secret Missile Silo is located at some place (which is either city or a point on a road) if and only if the shortest distance from this place to the capital along the roads of the country equals exactly l.

Bob wants to know how many missile silos are located in Berland to sell the information then to enemy spies. Help Bob.

Input

The first line contains three integers nm and s (2 ≤ n ≤ 1051 ≤ s ≤ n) — the number of cities, the number of roads in the country and the number of the capital, correspondingly. Capital is the city no. s.

Then m lines contain the descriptions of roads. Each of them is described by three integers viuiwi (1 ≤ vi, ui ≤ nvi ≠ ui1 ≤ wi ≤ 1000), where viui are numbers of the cities connected by this road and wi is its length. The last input line contains integer l (0 ≤ l ≤ 109) — the distance from the capital to the missile silos. It is guaranteed that:

  • between any two cities no more than one road exists;
  • each road connects two different cities;
  • from each city there is at least one way to any other city by the roads.

Output

Print the single number — the number of Super Duper Secret Missile Silos that are located in Berland.

Sample test(s)
input
4 6 1
1 2 1
1 3 3
2 3 1
2 4 1
3 4 1
1 4 2
2
output
3
input
5 6 3
3 1 1
3 2 1
3 4 1
3 5 1
1 2 6
4 5 8
4
output
3
Note

In the first sample the silos are located in cities 3 and 4 and on road (1, 3) at a distance 2 from city 1 (correspondingly, at a distance 1from city 3).

In the second sample one missile silo is located right in the middle of the road (1, 2). Two more silos are on the road (4, 5) at a distance3 from city 4 in the direction to city 5 and at a distance 3 from city 5 to city 4.



#include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <queue>
using namespace std;

const int maxn=1111111;
const int INF=0xfffffff;

struct node{
    int to;
    int w;
    int v;
    int next;
}a[maxn];

int n,m,s,l;
int dis[maxn],head[maxn],vis[maxn];
int edge;
queue<int>q;

void inint()
{
    edge=0;
    memset(head,-1,sizeof(head));
}

void addedge(int v,int u,int w)
{
    a[edge].v=v;
    a[edge].to=u;
    a[edge].w=w;
    a[edge].next=head[v];
    head[v]=edge++;
}

bool spfa(int s)
{
    int v,i;
    while(!q.empty()) q.pop();
    for(i=1;i<=n;i++)
    dis[i]=(i==s?0:INF);
    memset(vis,0,sizeof(vis));
    vis[s]=1;
    q.push(s);
    while(!q.empty())
    {
        int tmp=q.front();
        q.pop();
        for(i=head[tmp];i!=-1;i=a[i].next)
        {
            if(dis[tmp]+a[i].w<dis[v=a[i].to])
            {
                dis[v]=dis[tmp]+a[i].w;
                if(!vis[v])
                {
                    vis[v]=true;
                    q.push(v);
                }
            }
        }
        vis[tmp]=false;
    }
    return true;
}

int main()
{
    while(scanf("%d%d%d",&n,&m,&s)!=EOF)
    {
        int i;
        int v,u,w;
        inint();
        for(i=0;i<m;i++)
        {
            scanf("%d%d%d",&v,&u,&w);
            addedge(v,u,w);
            addedge(u,v,w);
        }
        scanf("%d",&l);
        spfa(s);
        int ans=0;
        for(i=1;i<=n;i++)
           if(dis[i]==l)  ans++;
        //cout<<ans<<endl;
        /*for(i=head[s];~i;i=a[i].next)
        {
            if(a[i].w>l)
                ans++;
        }*/
        for(i=0;i<edge;i+=2)
        {
            v=a[i].v;
            u=a[i].to;
            w=a[i].w;
            if((dis[v]<l)&&(l-dis[v]<w)&&(w-(l-dis[v])>l-dis[u]))
                  ans++;
            if((dis[u]<l)&&(l-dis[u]<w)&&(w-(l-dis[u])>l-dis[v]))
                  ans++;
            if((dis[v]<l)&&(dis[u]<l)&&(dis[u]+dis[v]+w==l*2))
                  ans++;
        }
        cout<<ans<<endl;
    }

    return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值