博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1724 ROADS【DFS+剪枝】
阅读量:4028 次
发布时间:2019-05-24

本文共 2822 字,大约阅读时间需要 9 分钟。

题面:

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.

Input
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 :

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.

Output
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.

题目大意:

一共有N个城市,分别命名为1-N。通过单向道路连接。每条道路有它的长度和走这条道路了需要的钱数。

Bob想从1走到N。手中有一定数量的钱。问最短的可行路径是多长。

大致思路:

用邻接表对图进行储存。

深度优先搜索。纯搜索会爆时间,所以需要进行剪枝。

  1. 当当下行走的道路长度已经大于等于已经成功走过的道路长度时,不必继续搜索。
  2. 当走这条路的花费加上已有的花费大于总钱数时,不必继续搜索。
  3. 将每次走过某一点的花费值所走的长度进行记录。当再次走过这一点时,如果长度大于所记录的长度,不必继续搜索。

代码:

#include
#include
#include
#include
#include
using namespace std;typedef struct { int end; int len,spend;}Road;vector< vector
> G(110);//相当于二维数组int k,n,r;int minlen,totallen,totalcost;int visit[110];int minl[110][10010];void dfs(int s){ if(s==n){ minlen= min (minlen,totallen); return ; } for(int i=0;i
k)//剪枝2 continue; if(!visit[r.end]){ if(totallen +r.len >=minlen)//剪枝1 continue; if( totallen +r.len >= minl[r.end][totalcost +r.spend])//剪枝3 continue; minl[r.end][totalcost + r.spend] =totallen +r.len;//剪枝3的记录 totallen += r.len; totalcost +=r.spend; visit[r.end] = 1; dfs(r.end); visit[r.end] = 0; totallen -= r.len;//消除这一次搜索的影响 totalcost -=r.spend; } }}int main(){ cin>>k>>n>>r; for(int i=0;i
>s>>r.end>>r.len>>r.spend; if(s != r.end) G[s].push_back(r); } memset(visit,0,sizeof(visit)); for(int i=0;i<110;++i) for(int j=0;j<10010;++j) minl[i][j]= 1<<30; totallen=0; minlen=1 << 30;//利用位运算变成一个极大值,上同理 totalcost=0; visit[1]=1; dfs(1); if(minlen< (1 << 30)){ cout<
<

转载地址:http://vdobi.baihongyu.com/

你可能感兴趣的文章
[互联网学习]如何提高网站的GooglePR值
查看>>
[关注大学生]求职不可不知——怎样的大学生不受欢迎
查看>>
[关注大学生]读“贫困大学生的自白”
查看>>
[互联网关注]李开复教大学生回答如何学好编程
查看>>
[关注大学生]李开复给中国计算机系大学生的7点建议
查看>>
[关注大学生]大学毕业生择业:是当"鸡头"还是"凤尾"?
查看>>
[茶余饭后]10大毕业生必听得歌曲
查看>>
gdb调试命令的三种调试方式和简单命令介绍
查看>>
C++程序员的几种境界
查看>>
VC++ MFC SQL ADO数据库访问技术使用的基本步骤及方法
查看>>
VUE-Vue.js之$refs,父组件访问、修改子组件中 的数据
查看>>
Vue-子组件改变父级组件的信息
查看>>
Python自动化之pytest常用插件
查看>>
Python自动化之pytest框架使用详解
查看>>
【正则表达式】以个人的理解帮助大家认识正则表达式
查看>>
性能调优之iostat命令详解
查看>>
性能调优之iftop命令详解
查看>>
非关系型数据库(nosql)介绍
查看>>
移动端自动化测试-Windows-Android-Appium环境搭建
查看>>
Xpath使用方法
查看>>