Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 9055 | Accepted: 3347 |
Description
Input
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
题意:给出一个有向图,每条边有两个权值:长度和费用,给出k的金钱,问在总费用k的范围内,从结点1走到结点n的最短路径,若不存在,输出-1.
思路:BFS+优先队列。距离短的优先。
AC代码:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define max2(a,b) ((a) > (b) ? (a) : (b))
#define min2(a,b) ((a) < (b) ? (a) : (b))
using namespace std;
struct node
{
int v,len,cost;
int next;
}edge[10005];
struct Node
{
int u,dis,c;
bool operator < (const Node &a) const
{
return dis>a.dis;
}
};
int head[105];
int k,n,r,num;
void init()
{
for(int i=1;i<=n;i++)
head[i]=-1;
num=0;
}
void add(int u,int v,int l,int c)
{
edge[num].v=v;
edge[num].len=l;
edge[num].cost=c;
edge[num].next=head[u];
head[u]=num++;
}
priority_queue Q;
int dij(int s)
{
Node a;
a.u=1;
a.dis=0;
a.c=0;
Q.push(a);
while(!Q.empty())
{
Node cur=Q.top();
Q.pop();
if(cur.u==n) return cur.dis;
for(int i=head[cur.u];i!=-1;i=edge[i].next)
{
if(cur.c+edge[i].cost<=k)
{
a.u=edge[i].v;
a.dis=cur.dis+edge[i].len;
a.c=cur.c+edge[i].cost;
Q.push(a);
}
}
}
return -1;
}
int main()
{
int u,v,l,c;
scanf("%d%d%d",&k,&n,&r);
init();
while(r--)
{
scanf("%d%d%d%d",&u,&v,&l,&c);
add(u,v,l,c);
}
printf("%d\n",dij(1));
return 0;
}