1087 All Roads Lead to Rome (30 分)
Indeed there are many different tourist routes from our city to Rome. You are supposed to find your clients the route with the least cost while gaining the most happiness.
Input Specification:
Each input file contains one test case. For each case, the first line contains 2 positive integers N (2≤N≤200), the number of cities, and K, the total number of routes between pairs of cities; followed by the name of the starting city. The next N−1 lines each gives the name of a city and an integer that represents the happiness one can gain from that city, except the starting city. Then K lines follow, each describes a route between two cities in the format City1 City2 Cost. Here the name of a city is a string of 3 capital English letters, and the destination is always ROM which represents Rome.
Output Specification:
For each test case, we are supposed to find the route with the least cost. If such a route is not unique, the one with the maximum happiness will be recommanded. If such a route is still not unique, then we output the one with the maximum average happiness – it is guaranteed by the judge that such a solution exists and is unique.
Hence in the first line of output, you must print 4 numbers: the number of different routes with the least cost, the cost, the happiness, and the average happiness (take the integer part only) of the recommanded route. Then in the next line, you are supposed to print the route in the format City1->City2->…->ROM.
Sample Input:
6 7 HZH
ROM 100
PKN 40
GDN 55
PRS 95
BLN 80
ROM GDN 1
BLN ROM 1
HZH PKN 1
PRS ROM 2
BLN HZH 2
PKN GDN 1
HZH PRS 1
Sample Output:
3 3 195 97
HZH->PRS->ROM
加入了点权值的最短路径问题,添加string城市跟int之间的相互映射。
dijkstra+dfs简直太好用了。
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<vector>
#include<map>
using namespace std;
const int maxn = 205;
const int inf = 0x3fffffff;
int n;
int cost[maxn][maxn];
int happy[maxn];
bool visit[maxn];
int d[maxn];
vector<vector<int> >pre;
vector<int>path;
int maxHappy=0;
int cnt=0;
void dijkstra(int s){
fill(d,d+n,inf);
d[s]=0;
for(int i=0;i<n;i++){
int u=-1,MIN=inf;
for(int i=0;i<n;i++){
if(visit[i]==false && d[i]<MIN){
u=i;
MIN=d[i];
}
}
if(u==-1) return;
visit[u]=true;
for(int v=0;v<n;v++){
if(visit[v]==false && cost[u][v]!=0){
if(d[u]+cost[u][v] < d[v]){
d[v]=d[u]+cost[u][v];
pre[v].clear();
pre[v].push_back(u);
}
else if(d[u]+cost[u][v] == d[v]){
pre[v].push_back(u);
}
}
}
}
}
void dfs(int root,vector<int> temp,int hp){
temp.push_back(root);
hp+=happy[root];
if(root==0){
cnt++;
if(hp>maxHappy){
path=temp;
maxHappy=hp;
}
else if(hp==maxHappy){
if(temp.size() < path.size()){
path=temp;
}
}
return;
}
for(int i=0;i<pre[root].size();i++){
dfs(pre[root][i],temp,hp);
}
}
int main()
{
int k;
char first[4];
scanf("%d %d %s",&n,&k,first);
map<string,int>mp;
map<int,string>mp2;
mp[first]=0;
mp2[0]=first;
pre.resize(n);
for(int i=1;i<n;i++){
char city[4];
int h;
scanf("%s %d",city,&h);
mp[city]=i;
mp2[i]=city;
happy[i]=h;
}
for(int i=0;i<k;i++){
char c1[4],c2[4];
int t;
scanf("%s %s %d",c1,c2,&t);
cost[mp[c1]][mp[c2]]=t;
cost[mp[c2]][mp[c1]]=t;
}
dijkstra(0);
vector<int>v;
dfs(mp["ROM"],v,0);
printf("%d %d %d %d\n%s",cnt,d[mp["ROM"]],maxHappy,maxHappy/(path.size()-1),first);
for(int i=path.size()-2;i>=0;i--){
cout<<"->"<<mp2[path[i]];
}
return 0;
}
本文介绍了一个加入点权值的最短路径问题,通过使用Dijkstra算法结合DFS深度优先搜索,来寻找从起点到罗马成本最低且幸福值最大的旅行路线。文章详细解析了算法实现过程,包括字符串城市名与整数之间的映射,以及如何通过预处理和回溯找到所有可能的最优路径。
--PAT甲级&spm=1001.2101.3001.5002&articleId=86657839&d=1&t=3&u=411961945eb045f39e40f2923541f5ec)
455

被折叠的 条评论
为什么被折叠?



