POJ 2387 Til the Cows Come Home(最短路 Dijkstra/spfa)
Til the Cows Come Home
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 46727 | Accepted: 15899 |
Description
Bessie is out in the field and wants to get back to the barn to get as much sleep as possible before Farmer John wakes her for the morning milking. Bessie needs her beauty sleep, so she wants to get back as quickly as possible.
Farmer John's field has N (2 <= N <= 1000) landmarks in it, uniquely numbered 1..N. Landmark 1 is the barn; the apple tree grove in which Bessie stands all day is landmark N. Cows travel in the field using T (1 <= T <= 2000) bidirectional cow-trails of various lengths between the landmarks. Bessie is not confident of her navigation ability, so she always stays on a trail from its start to its end once she starts it.
Given the trails between the landmarks, determine the minimum distance Bessie must walk to get back to the barn. It is guaranteed that some such route exists.
Farmer John's field has N (2 <= N <= 1000) landmarks in it, uniquely numbered 1..N. Landmark 1 is the barn; the apple tree grove in which Bessie stands all day is landmark N. Cows travel in the field using T (1 <= T <= 2000) bidirectional cow-trails of various lengths between the landmarks. Bessie is not confident of her navigation ability, so she always stays on a trail from its start to its end once she starts it.
Given the trails between the landmarks, determine the minimum distance Bessie must walk to get back to the barn. It is guaranteed that some such route exists.
Input
* Line 1: Two integers: T and N
* Lines 2..T+1: Each line describes a trail as three space-separated integers. The first two integers are the landmarks between which the trail travels. The third integer is the length of the trail, range 1..100.
* Lines 2..T+1: Each line describes a trail as three space-separated integers. The first two integers are the landmarks between which the trail travels. The third integer is the length of the trail, range 1..100.
Output
* Line 1: A single integer, the minimum distance that Bessie must travel to get from landmark N to landmark 1.
Sample Input
5 5
1 2 20
2 3 30
3 4 20
4 5 20
1 5 100
Sample Output
90
Hint
INPUT DETAILS:
There are five landmarks.
OUTPUT DETAILS:
Bessie can get home by following trails 4, 3, 2, and 1.
There are five landmarks.
OUTPUT DETAILS:
Bessie can get home by following trails 4, 3, 2, and 1.
Dijkstra()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | #include<iostream> #include<cstdio> #include<cstring> #include<queue> #include<algorithm> using namespace std; typedef __int64 LL; const int maxn = 2005; const int INF = 0x3f3f3f3f; struct Edge{ int u,v,next; LL w; bool operator < ( const Edge & a) const { return w > a.w; } }edge[maxn<<1] ; int tot = 0,head[maxn]; bool vis[maxn]; LL dis[maxn]; void addedge( int u, int v,LL w) { edge[tot] = (Edge){u,v,head[u],w }; head[u] = tot++; } void Dijkstra() { priority_queue<Edge>que; Edge p; memset (dis,INF, sizeof (dis)); memset (vis, false , sizeof (vis)); p.v = 1; que.push(p); dis[1] = 0; while (!que.empty()) { p = que.top(); que.pop(); int u = p.v; if (vis[u]) continue ; vis[u] = true ; for ( int i = head[u];i != -1;i = edge[i].next) { int v = edge[i].v; if (dis[u] + edge[i].w < dis[v]) { dis[v] = dis[u] + edge[i].w; p.u = u,p.v = v,p.w = dis[v]; que.push(p); } } } } int main() { //freopen("input.txt","r",stdin); int T,N,u,v; LL w; memset (head,-1, sizeof (head)); scanf ( "%d%d" ,&T,&N); for ( int i = 0;i < T;i++) { scanf ( "%d%d%I64d" ,&u,&v,&w); addedge(u,v,w); addedge(v,u,w); } Dijkstra(); printf ( "%I64d\n" ,dis[N]); return 0; } |
spfa()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | #include<cstdio> #include<cstring> #include<iostream> #include<queue> #include<algorithm> using namespace std; const int INF = 0x3f3f3f3f; const int MAX_N = 1005; bool flag[MAX_N]; int edge[MAX_N][MAX_N]; void spfa( int n) { int dis[MAX_N]; queue< int >que; memset (flag, false , sizeof (flag)); memset (dis,0x3f3f3f3f, sizeof (dis)); dis[1] = 0; que.push(1); flag[1] = true ; while (!que.empty()) { int curval = que.front(); que.pop(); flag[curval] = false ; for ( int i = 1;i <= n;i++) { if (dis[curval] < dis[i] - edge[curval][i]) { dis[i] = dis[curval] + edge[curval][i]; if (!flag[i]) { que.push(i); flag[i] = true ; } } } } printf ( "%d\n" ,dis[n]); } int main() { int N,T; while (~ scanf ( "%d%d" ,&T,&N)) { int u,v,w; for ( int i = 1;i <= N;i++) { for ( int j = 1;j <= i;j++) { if (i == j) edge[i][j] = 0; else edge [i][j] = edge[j][i] = INF; } } for ( int i = 0;i < T;i++) { scanf ( "%d%d%d" ,&u,&v,&w); /*if (w < edge[u][v]) { edge[u][v] = edge[v][u] = w; }*/ edge[u][v] = edge[v][u] = min(w,edge[u][v]); } spfa(N); } return 0; } |
┆ 凉 ┆ 暖 ┆ 降 ┆ 等 ┆ 幸 ┆ 我 ┆ 我 ┆ 里 ┆ 将 ┆ ┆ 可 ┆ 有 ┆ 谦 ┆ 戮 ┆ 那 ┆ ┆ 大 ┆ ┆ 始 ┆ 然 ┆
┆ 薄 ┆ 一 ┆ 临 ┆ 你 ┆ 的 ┆ 还 ┆ 没 ┆ ┆ 来 ┆ ┆ 是 ┆ 来 ┆ 逊 ┆ 没 ┆ 些 ┆ ┆ 雁 ┆ ┆ 终 ┆ 而 ┆
┆ ┆ 暖 ┆ ┆ 如 ┆ 地 ┆ 站 ┆ 有 ┆ ┆ 也 ┆ ┆ 我 ┆ ┆ 的 ┆ 有 ┆ 精 ┆ ┆ 也 ┆ ┆ 没 ┆ 你 ┆
┆ ┆ 这 ┆ ┆ 试 ┆ 方 ┆ 在 ┆ 逃 ┆ ┆ 会 ┆ ┆ 在 ┆ ┆ 清 ┆ 来 ┆ 准 ┆ ┆ 没 ┆ ┆ 有 ┆ 没 ┆
┆ ┆ 生 ┆ ┆ 探 ┆ ┆ 最 ┆ 避 ┆ ┆ 在 ┆ ┆ 这 ┆ ┆ 晨 ┆ ┆ 的 ┆ ┆ 有 ┆ ┆ 来 ┆ 有 ┆
┆ ┆ 之 ┆ ┆ 般 ┆ ┆ 不 ┆ ┆ ┆ 这 ┆ ┆ 里 ┆ ┆ 没 ┆ ┆ 杀 ┆ ┆ 来 ┆ ┆ ┆ 来 ┆
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)