POJ 1724 ROADS

4811 단어 데이터 구조
클릭 하여 링크 열기
ROADS
Time Limit: 1000MS
 
Memory Limit: 65536K
Total Submissions: 10202
 
Accepted: 3786
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

    n 개 도시, m 개의 길이 가 있 습 니 다. 처음에 k 개의 금화 가 있 었 습 니 다. 모든 길 은 길이 와 이 길 을 지나 가 는 비용 이 있 었 습 니 다. 당신 이 감당 할 수 있 는 비용 안에 1 번 도시 에서 n 번 도시 사이 의 가장 짧 은 거 리 는 얼마 입 니까?
    dfs 로 역 추적 할 수도 있 고 bfs 우선 대기 열 을 사용 할 수도 있 습 니 다. 사실은 우선 대기 열의 효율 이 비교적 높다 는 것 을 나타 냅 니 다.
    dfs 는 1 일부 터 모든 상황 을 한 층 씩 돌아 다 니 며 금화 수량 이 비용 을 만족 시 키 지 못 하면 가장 짧 은 경 로 를 찾 을 때 까지 재 귀 를 종료 합 니 다.
    우선 대기 열 은 경로 에 따라 작은 것 부터 큰 것 까지 정렬 합 니 다. 조건 에 맞 는 점 을 찾 지 못 하면 n 번 점 을 찾 을 때 까지 대기 열 에 가입 합 니 다.
    //332K	94MS
    #include
    #include
    #define M 107
    #define inf 0x3f3f3f
    int head[M],vis[M],nodes,minlen;
    int n,m,k;
    struct E
    {
        int u,v,l,c,next;
    } edge[M*M];
    void addedge(int u,int v,int l,int c)
    {
        edge[nodes].u=u;
        edge[nodes].v=v;
        edge[nodes].l=l;
        edge[nodes].c=c;
        edge[nodes].next=head[u];
        head[u]=nodes++;
    }
    void dfs(int city,int nowlen,int nowmoney)
    {
        if(nowlen>minlen)return;
        if(city==n&&nowlen=0)
        {
            minlen=nowlen;
            return;
        }
        for(int i=head[city]; i!=-1; i=edge[i].next)
        {
            int v=edge[i].v;
            int l=edge[i].l;
            int c=edge[i].c;
            if(!vis[v]&&nowmoney>=c)
            {
                vis[v]=1;
                dfs(v,nowlen+l,nowmoney-c);
                vis[v]=0;
            }
        }
        return;
    }
    int main()
    {
        memset(head,-1,sizeof(head));
        memset(vis,0,sizeof(vis));
        nodes=0,minlen=inf;
        scanf("%d%d%d",&k,&n,&m);
        int u,v,l,c;
        while(m--)
        {
            scanf("%d%d%d%d",&u,&v,&l,&c);
            addedge(u,v,l,c);
        }
        dfs(1,0,k);
        if(minlen==inf)printf("-1
    "); else printf("%d
    ",minlen); }
    //1028K	32MS
    #include
    #include
    #include
    #define M 1007
    using namespace std;
    int head[M],nodes;
    int k,n,m;
    struct Q
    {
        int pos,len,money;
        bool operatorq;
        Q now,next;
        now.pos=1;
        now.len=0;
        now.money=0;
        q.push(now);
        while(!q.empty())
        {
            now=q.top();
            q.pop();
            int pos=now.pos,len=now.len,money=now.money;
            if(pos==n&&money<=k)return len;
            for(int i=head[pos];i!=-1;i=edge[i].next)
            {
                int v=edge[i].v;
                int l=edge[i].l;
                int c=edge[i].c;
                if(money+c<=k)
                {
                    next.pos=v;
                    next.len=len+l;
                    next.money=money+c;
                    q.push(next);
                }
            }
        }
        return -1;
    }
    int main()
    {
        scanf("%d%d%d",&k,&n,&m);
        nodes=0;
        memset(head,-1,sizeof(head));
        int u,v,l,c;
        for(int i=0; i

    좋은 웹페이지 즐겨찾기