【poj 1724】ROADS 题意&题解&代码(C++)

题目链接:
http://poj.org/problem?id=1724
题意:
给出总钱数 pay(题上的K) ,再给出总点数n,总边数m。
接下来输入m条边,每条边都是单向边,每条边有四个信息a,b,l,c。
表示从a到b有一条边长为l,过路费为c的边。
每过一条边都要交过路费,若当前总钱数小于过路费,则不能走,问从1走到n的最短路(距离最短,花费在总钱数以内)。
题解:
第一次写dijkstra,感觉很神奇,也不知道到底是不是,反正就这么叫了。。
参考博客:
http://www.cnblogs.com/scau20110726/archive/2013/04/28/3050178.html
代码:

#include
#include
#include
#include
#include
using namespace std;
int pay,n,m;
struct node{
    int n;int d;int c;
    bool operator < (const struct node a) const
    {
        if (a.d == d) return a.creturn a.dstruct edge{
    int v;int d;int c;
};
priority_queueq;
vectorlin[110];
int dj()
{
    while(!q.empty()) q.pop();
    node st; st.n=1;st.c=0;st.d=0;
    q.push(st);
    while(!q.empty())
    {
        node now=q.top();q.pop();
        if (now.n==n)
        return now.d;
        for (int i=0;iif (nex.c<=pay) q.push(nex);
        }
    }
    return -1;
}
int main()
{
    scanf("%d%d%d",&pay,&n,&m);
    for (int i=1;i<=m;i++)
    {
        int x,y,di,ci;
        scanf("%d%d%d%d",&x,&y,&di,&ci);
        edge xv;
        xv.v=y;xv.d=di;xv.c=ci; 
        lin[x].push_back(xv);
    }
    printf("%d\n",dj());
}

你可能感兴趣的:(oi之路,poj,DERIT的博客专栏)