USACO 2.4 D Bessie Come Home 题解

来源:互联网 发布:h5制作软件下载 编辑:程序博客网 时间:2024/05/22 01:28

2.4.D Bessie Come Home

It's dinner time, and the cows are out in their separate pastures. Farmer John rings the bell so they will start walking to the barn. Your job is to figure out which one cow gets to the barn first (the supplied test data will always have exactly one fastest cow).

Between milkings, each cow is located in her own pasture, though some pastures have no cows in them. Each pasture is connected by a path to one or more other pastures (potentially including itself). Sometimes, two (potentially self-same) pastures are connected by more than one path. One or more of the pastures has a path to the barn. Thus, all cows have a path to the barn and they always know the shortest path. Of course, cows can go either direction on a path and they all walk at the same speed.

The pastures are labeled `a'..`z' and `A'..`Y'. One cow is in each pasture labeled with a capital letter. No cow is in a pasture labeled with a lower case letter. The barn's label is `Z'; no cows are in the barn, though.

PROGRAM NAME: comehome

INPUT FORMAT

Line 1: Integer P (1 <= P <= 10000) the number of paths that interconnect the pastures (and the barn)Line 2..P+1: Space separated, two letters and an integer: the names of the interconnected pastures/barn and the distance between them (1 <= distance <= 1000)

SAMPLE INPUT (file comehome.in) 

5
A d 6
B d 3
C e 9
d Z 8
e Z 3

OUTPUT FORMAT

A single line containing two items: the capital letter name of the pasture of the cow that arrives first back at the barn, the length of the path followed by that cow.

SAMPLE OUTPUT (file comehome.out)

B 11
#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <iostream>using namespace std;int P, w;int G[52][52], dist[52];char u, v, ans;bool visited[52];char Code(char ch){return isupper(ch)?ch-65:ch-71;}void Dijkstra(int v){    memcpy(dist, G[v], sizeof(dist));    visited[v] = true;    for(int i = 1; i<52; ++i){        int best = 0x7FFFFFFF, best_j = -1;        for(int j = 0; j<52; ++j)if(!visited[j] && dist[j]<best) best = dist[j], best_j = j;        if(best_j<0) break;        if(best_j<25){            ans = char(65+best_j);            w = best;            return;        }        visited[best_j] = true;        for(int j = 0; j<52; ++j)if(!visited[j] && dist[j]>best+G[best_j][j]) dist[j] = best+G[best_j][j];    }}int main(){    freopen("comehome.in", "r", stdin); freopen("comehome.out", "w", stdout);    memset(G, 0x7F, sizeof(G));    scanf("%d\n", &P);    for(int i = 0; i<P; ++i){        scanf("%c %c %d\n", &u, &v, &w);        u = Code(u); v = Code(v);        if(G[u][v]>w) G[u][v] = G[v][u] = w;    }    Dijkstra(25);    printf("%c %d\n", ans, w); fclose(stdin); fclose(stdout); return 0;}


原创粉丝点击