ROADS
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 10804   Accepted: 3976

Description

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.

Sample Input

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

Sample Output

11

Source

 
 //邻接表存储结构+剪枝,优化时间复杂度
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std; const int MAXWAY = ;
const int MAXCITY = ;
const int INF = 0xffffff0;
struct Node{
int s,d,l,t;
int next; //邻接表的表头指针
}Node[MAXWAY];
int k,n,r;
int totallen; //存储当前路径中的路径长度
int totalcost; //存储当前路径中需要的话费
int minLen; //存储当前情况下最短的路径长度
int visited[]; //存储是否访问过某个城市 int head[MAXWAY]; //存储链表信息 void DFS(int i)
{
if(i==n)
{
minLen = min(minLen,totallen);
return ;
}
else
{
for(int j=head[i];j!=-;j=Node[j].next) //遍历 以i为起点的其他的所有
{
if(!visited[Node[j].d])
{
if(totalcost+Node[j].t>k) //如果加上当前的这条路的费用超过了k,则跳过
continue;
if(totallen+Node[j].l>minLen) //如果在费用没有超过的情况下加上该条路的长度,超过了当前的最短长度,则跳过
continue;
totallen = totallen + Node[j].l;
totalcost = totalcost + Node[j].t;
visited[Node[j].d] = ;
DFS(Node[j].d);
visited[Node[j].d] = ;
totallen -= Node[j].l;
totalcost -= Node[j].t; }
}
}
} int main()
{
while(scanf("%d%d%d",&k,&n,&r)!=EOF)
{
memset(head,-,sizeof(head));
memset(visited,,sizeof(visited));
for(int i=;i<r;i++) //接受数据同时,利用头插法建立邻接表
{
scanf("%d%d%d%d",&Node[i].s,&Node[i].d,&Node[i].l,&Node[i].t);
Node[i].next = head[Node[i].s]; //如果当前不存在元素,则此时的Node[i]就是尾节点,它的next是-1
//否则,Node[i].next就是指向当前的链表最头部的那个Node元素。
head[Node[i].s] = i; //修改当前的head[Node[i].s]的指向,使head[i]的值始终指向该条链表的头部元素,以便执行头插法
}
totallen = ;
totalcost = ;
minLen = INF;
DFS();
if(minLen<INF)
printf("%d\n",minLen);
else
printf("-1\n");
}
return ;
}

最新文章

  1. wxPython入门练习代码 二
  2. Locations Section of OpenCascade BRep
  3. DDD为何叫好不叫座?兼论DCI与业务分析的方法论
  4. array_reduce方法用回调函数迭代地将对数组的值进行操作
  5. UVALive 4221 Walk in the Park 扫描线
  6. Python中模拟enum枚举类型的5种方法分享
  7. JSP-tag文件使用介绍
  8. postgres常用类型
  9. selenium中用js定位html上没有id,没有name的元素
  10. switch case多值匹配
  11. Azure 基础:使用 powershell 创建虚拟机
  12. 使用dropwizard(5)--加入swagger
  13. ASP.NET项目开发
  14. 蜕变成蝶~Linux设备驱动之异步通知和异步I/O
  15. mysql 由decimal 引起的 Warning: Data truncated for column
  16. How do I convert an enum to a list in C#?
  17. SQL Server 合并行
  18. PIMPL(二)
  19. sql中查询某月某年内的记录
  20. Zabbix 监控页面中文乱码

热门文章

  1. DBA 经典面试题(1)
  2. dig命令(转载)
  3. android学习--TabHost选项卡组件
  4. POJ 1469 ZOJ1140 二分匹配裸题
  5. EffectiveC#16--垃圾最小化
  6. 爆出错误:The Geometry has no Z values
  7. Cisco cmd 命令
  8. PHP学习笔记二十四【Get Set】
  9. oracle生成随机数
  10. 0122——UITabBarController