zoukankan      html  css  js  c++  java
  • ROADS

    ROADS
    Time Limit: 1000MS Memory Limit: 65536K
    Total Submissions: 11977 Accepted: 4429

    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
    CEOI 1998
    网上的很多题解是最短路,不过我感觉还是搜索好写,DFS+剪枝,很轻松就过来

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <cmath>
    #include <algorithm>
    #define LL long long
    using namespace std;
    
    const int MAX = 11000;
    
    const int INF = 0x3f3f3f3f;
    
    struct node
    {
        int v;
        int len;
        int w;
        int next;
    }a[MAX];
    
    int Head[120];
    
    bool vis[120];
    
    int top;
    
    int n,m,k;
    
    int MM;
    
    void DFS(int s,int len,int mon)
    {
        if(s==n)
        {
            if(mon<=k&&len<MM)
            {
                MM=len;
            }
            return ;
        }
        if(mon>k)
        {
            return ;
        }
        if(len>MM)
        {
            return ;
        }
        for(int i=Head[s];i!=-1;i=a[i].next)
        {
            if(!vis[a[i].v])
            {
                vis[a[i].v]=true;
                DFS(a[i].v,len+a[i].len,mon+a[i].w);
                vis[a[i].v]=false;
            }
        }
    }
    
    int main()
    {
        int s,d,l,t;
        while(~scanf("%d",&k))
        {
            scanf("%d %d",&n,&m);
            top=0;
            memset(Head,-1,sizeof(Head));
            for(int i=0;i<m;i++)
            {
                scanf("%d %d %d %d",&s,&d,&l,&t);
                a[top].len=l;
                a[top].w=t;
                a[top].v=d;
                a[top].next=Head[s];
                Head[s]=top++;
            }
            memset(vis,false,sizeof(vis));
            MM = INF;
            vis[1]=true;
            DFS(1,0,0);
            if(MM==INF)
            {
                printf("-1
    ");
            }
            else
            {
                printf("%d
    ",MM);
            }
        }
    
        return 0;
    }
    
  • 相关阅读:
    NodeJs
    xml_MathML的基本知识点__这东西要自己实践最好
    嘻哈帮天通苑_poppin——张锋
    html5_canvas-记忆力卡片游戏
    baidu时光轴_使用window.scroll实现的
    my_poppin_and_me
    chrom_input_click
    Get filename from URL using Javascript
    UBB编辑器
    What is the best Java email address validation method?
  • 原文地址:https://www.cnblogs.com/juechen/p/5255995.html
Copyright © 2011-2022 走看看