Codeforces 144D Missile Silos 最短路
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.
The first line contains three integers n, m and s (2 ≤ n ≤ 105, , 1 ≤ 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 vi, ui, wi (1 ≤ vi, ui ≤ n, vi ≠ ui,1 ≤ wi ≤ 1000), where vi, ui 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.
Print the single number — the number of Super Duper Secret Missile Silos that are located in Berland.
4 6 1
1 2 1
1 3 3
2 3 1
2 4 1
3 4 1
1 4 2
2
3
5 6 3
3 1 1
3 2 1
3 4 1
3 5 1
1 2 6
4 5 8
4
3
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 <bits/stdc++.h> using namespace std; const int INF = 0x3f3f3f3f; typedef long long ll; const int N = 1e5 + 10; struct qnode { int v; int c; qnode(int _v = 0, int _c = 0) : v(_v), c(_c) { } bool operator < (const qnode &r) const { return c > r.c; }; }; struct Edge { int v, cost; Edge(int _v = 0, int _cost = 0) : v(_v), cost(_cost) { } }; vector<Edge> E[N]; bool vis[N]; int dist[N], pre[N]; void Dij(int n, int s) { memset(vis, false, sizeof vis); for(int i = 1; i <= n; ++i) dist[i] = INF; priority_queue<qnode> que; pre[s] = -1; while(!que.empty()) que.pop(); dist[s] = 0; que.push(qnode(s, 0)); qnode tmp; while(!que.empty()) { tmp = que.top(); que.pop(); int u = tmp.v; if(vis[u]) continue; vis[u] = true; for(int i = 0; i < E[u].size(); ++i) { int v = E[u][i].v; int cost = E[u][i].cost; if(!vis[v] && dist[v] > dist[u] + cost) { dist[v] = dist[u] + cost; que.push(qnode(v, dist[v])); pre[v] = u; } } } } void addedge(int u, int v, int w) { E[u].push_back(Edge(v, w)); E[v].push_back(Edge(u, w)); } int main() { #ifdef LOCAL freopen("in.txt", "r", stdin); #endif int n, m, s, u, v, w, l; scanf("%d%d%d", &n, &m, &s); for(int i = 0; i < m; ++i) { scanf("%d%d%d", &u, &v, &w); addedge(u, v, w); } scanf("%d", &l); Dij(n, s); int ans = 0; for(int i = 1; i <= n; ++i) if(dist[i] == l) ans++; int res = 0; for(int u = 1; u <= n; ++u) { for(int i = 0; i < E[u].size(); ++i) { int v = E[u][i].v; int w = E[u][i].cost; if(dist[u] < l && dist[u] + w > l && w + dist[u] + dist[v] >= 2 * l) res++; if(dist[v] < l && dist[v] + w > l && w + dist[v] + dist[u] >= 2 * l) res++; if(dist[u] < l && dist[v] < l && dist[u] + w > l && dist[v] + w > l && (l - dist[u] + l - dist[v] == w)) res--; } } printf("%d\n", ans + res / 2); return 0; }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧