1. 程式人生 > >[最短路]P1339 [USACO09OCT]熱浪Heat Wave

[最短路]P1339 [USACO09OCT]熱浪Heat Wave

usaco number 最短路算法 char code 天下 name fin for

題目描述

The good folks in Texas are having a heatwave this summer. Their Texas Longhorn cows make for good eating but are not so adept at creating creamy delicious dairy products. Farmer John is leading the charge to deliver plenty of ice cold nutritious milk to Texas so the Texans will not suffer the heat too much.

FJ has studied the routes that can be used to move milk from Wisconsin to Texas. These routes have a total of T (1 <= T <= 2,500) towns conveniently numbered 1..T along the way (including the starting and ending towns). Each town (except the source and destination towns) is connected to at least two other towns by bidirectional roads that have some cost of traversal (owing to gasoline consumption, tolls, etc.). Consider this map of seven towns; town 5 is the

source of the milk and town 4 is its destination (bracketed integers represent costs to traverse the route):


                              [1]----1---[3]-
                             /                                     [3]---6---[4]---3--[3]--4
                     /               /       /|
                    5         --[3]--  --[2]- |
                     \       /        /       |
                      [5]---7---[2]--2---[3]---
                            |       /
                           [1]------

Traversing 5-6-3-4 requires spending 3 (5->6) + 4 (6->3) + 3 (3->4) = 10 total expenses.

Given a map of all the C (1 <= C <= 6,200) connections (described as two endpoints R1i and R2i (1 <= R1i <= T; 1 <= R2i <= T) and costs (1 <= Ci <= 1,000), find the smallest total expense to traverse from the starting town Ts (1 <= Ts <= T) to the destination town Te (1 <= Te <= T).

德克薩斯純樸的民眾們這個夏天正在遭受巨大的熱浪!!!他們的德克薩斯長角牛吃起來不錯,可是他們並不是很擅長生產富含奶油的乳製品。Farmer John此時以先天下之憂而憂,後天下之樂而樂的精神,身先士卒地承擔起向德克薩斯運送大量的營養冰涼的牛奶的重任,以減輕德克薩斯人忍受酷暑的痛苦。

FJ已經研究過可以把牛奶從威斯康星運送到德克薩斯州的路線。這些路線包括起始點和終點先一共經過T (1 <= T <= 2,500)個城鎮,方便地標號為1到T。除了起點和終點外地每個城鎮由兩條雙向道路連向至少兩個其它地城鎮。每條道路有一個通過費用(包括油費,過路費等等)。

給定一個地圖,包含C (1 <= C <= 6,200)條直接連接2個城鎮的道路。每條道路由道路的起點Rs,終點Re (1 <= Rs <= T; 1 <= Re <= T),和花費(1 <= Ci <= 1,000)組成。求從起始的城鎮Ts (1 <= Ts <= T)到終點的城鎮Te(1 <= Te <= T)最小的總費用。

輸入輸出格式

輸入格式:

第一行: 4個由空格隔開的整數: T, C, Ts, Te

第2到第C+1行: 第i+1行描述第i條道路。有3個由空格隔開的整數: Rs, Re和Ci

輸出格式:

一個單獨的整數表示從Ts到Te的最小總費用。數據保證至少存在一條道路。

輸入輸出樣例

輸入樣例#1:
7 11 5 4
2 4 2
1 4 3
7 2 2
3 4 3
5 7 5
7 3 3
6 1 1
6 3 4
2 4 3
5 6 3
7 2 1
輸出樣例#1:
7

說明

【樣例說明】

5->6->1->4 (3 + 1 + 3)

分析

懶得分析,就一道樸素的最短路算法,這裏用的是Dijkstra,還沒有用堆優化.

請見

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<algorithm>
 4 #include<cstring>
 5 #include<functional>
 6 #define Maxn 2500+10
 7 
 8 using namespace std;
 9 int n, m, S, T;
10 int Dist[Maxn],e[Maxn][Maxn];
11 bool Book[Maxn];
12 void Inite();
13 int Dijkstra();
14 int main()
15 {
16     Inite();
17     printf("%d\n",Dijkstra());
18     return 0;
19 }
20 void Inite()
21 {
22     scanf("%d%d%d%d", &n, &m, &S, &T);
23     memset(e, 0x7f, sizeof e);
24     memset(Dist, 0x7f, sizeof Dist);
25     memset(Book, false, sizeof Book);
26     for (int i = 1; i <= n; i++) e[i][i] = 0;
27     for (int i = 1, a, b, c; i <= m; i++) {
28         scanf("%d%d%d", &a, &b, &c);
29         e[a][b] = e[b][a] = c;
30     }
31 }
32 int Dijkstra()
33 {
34     for (int i = 1; i <= n; i++) Dist[i] = e[S][i];//將初始值賦予Dist
35     Dist[S] = 0, Book[S] = true;//標記Dist[S]為確定值
36     int pos = 0, Temp = 1 << 30, Kace = n - 1;
37     while (Kace--)//最多進行Kace次
38     {
39         for (int i = 1; i <= n; i++)//找到最小的估計距離值的下標
40             if (!Book[i] && Dist[i] < Temp)
41                 Temp = Dist[i], pos = i;
42         if (!pos) break;//沒找到(我覺得這句沒用)
43         Book[pos] = true;//標記為確定值,因為Ta不可能再小了
44         for (int j = 1; j <= n; j++)//樸素的松弛操作
45             if (Dist[j] > Dist[pos] + e[pos][j])
46                 Dist[j] = Dist[pos] + e[pos][j];
47         Temp = 1 << 30, pos = 0;
48     }
49     return Dist[T];
50 }

[最短路]P1339 [USACO09OCT]熱浪Heat Wave