描述
N cities named with numbers 1 ... N are connected with one-way roads. Each road has two parameters associated with it : the road length and the toll that needs to be paid for the road (expressed in the number of coins).
Bob and Alice used to live in the city 1. After noticing that Alice was cheating in the card game they liked to play, Bob broke up with her and decided to move away - to the city N. He wants to get there as quickly as possible, but he is short on cash.
We want to help Bob to find the shortest path from the city 1 to the city N that he can afford with the amount of money he has.
输入
The first line of the input contains the integer K, 0 <= K <= 10000, maximum number of coins that Bob can spend on his way.
The second line contains the integer N, 2 <= N <= 100, the total number of cities.
The third line contains the integer R, 1 <= R <= 10000, the total number of roads.
Each of the following R lines describes one road by specifying integers S, D, L and T separated by single blank characters :
Notice that different roads may have the same source and destination cities.
输出
The first and the only line of the output should contain the total length of the shortest path from the city 1 to the city N whose total toll is less than or equal K coins.
If such path does not exist, only number -1 should be written to the output.
样例输入
样例输出
来源
Bob and Alice used to live in the city 1. After noticing that Alice was cheating in the card game they liked to play, Bob broke up with her and decided to move away - to the city N. He wants to get there as quickly as possible, but he is short on cash.
We want to help Bob to find the shortest path from the city 1 to the city N that he can afford with the amount of money he has.
The second line contains the integer N, 2 <= N <= 100, the total number of cities.
The third line contains the integer R, 1 <= R <= 10000, the total number of roads.
Each of the following R lines describes one road by specifying integers S, D, L and T separated by single blank characters :
- S is the source city, 1 <= S <= N
- D is the destination city, 1 <= D <= N
- L is the road length, 1 <= L <= 100
- T is the toll (expressed in the number of coins), 0 <= T <=100
Notice that different roads may have the same source and destination cities.
If such path does not exist, only number -1 should be written to the output.
5 6 7 1 2 2 3 2 4 3 3 3 4 2 4 1 3 4 1 4 6 2 1 3 5 2 0 5 4 3 2
11
CEOI 1998
啰嗦什么,直接DFS+剪枝!
然后果然TLE23333333333
好吧,从后往前搜,秒过。上代码:
#include<iostream>
#include<stdio.h>
#include<algorithm>
using namespace std;
unsigned int K = 0;
int N = 0;
int R = 0;
int cost = 0x3fffffff;
int totaldis = 0x3fffffff;
class city_t {
public:
int tcost;
int tdis;
int nroad;
int roadlist[200];
bool vis;
city_t() {
tcost = 0x3fffffff;
tdis = 0x3fffffff;
nroad = 0;
vis = false;
}
}city[101];
struct road_t {
int s;
int d;
int l;
int t;
bool operator< (road_t a) {
return this->l < a.l;
}
}road[10001];
void dfs(unsigned int cityp,int tdistance,int ttoll) {
if (ttoll > K || tdistance >= totaldis) {
return ;
}else if ((cityp == 1)) {
if (tdistance < totaldis) {
totaldis = tdistance;
return ;
}
else {
return ;
}
}
for (int i = 0; i < city[cityp].nroad; i++) {
if (city[road[city[cityp].roadlist[i]].s].vis == false) {
city[road[city[cityp].roadlist[i]].s].vis = true;
dfs(road[city[cityp].roadlist[i]].s, tdistance + road[city[cityp].roadlist[i]].l, ttoll + road[city[cityp].roadlist[i]].t);
//if(ret > 0)
city[road[city[cityp].roadlist[i]].s].vis = false;
}
}
return ;
}
int main() {
cin >> K >> N >> R;
for (int i = 0; i < R; i++) {
//cin >> road[i].s >> road[i].d >> road[i].l >> road[i].t;
scanf("%d %d %d %d", &road[i].s, &road[i].d, &road[i].l, &road[i].t);
}
sort(road, road + R);
for (int i = 0; i < R; i++) {
city[road[i].d].roadlist[city[road[i].d].nroad++] = i;
}
dfs(N, 0, 0);
if (totaldis!= 0x3fffffff)
cout << totaldis << endl;
else
cout << "-1" << endl;
//system("pause");
return 0;
}
本文介绍了一个寻找从城市1到城市N的最短路径的问题,考虑到路径长度和费用限制。通过使用DFS加剪枝的方法,文章提供了一种有效的解决方案,并附带了完整的C++实现代码。
359

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



