zoukankan      html  css  js  c++  java
  • hdu1548

                                          A strange lift

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 8530    Accepted Submission(s): 3232


    Problem Description
    There is a strange lift.The lift can stop can at every floor as you want, and there is a number Ki(0 <= Ki <= N) on every floor.The lift have just two buttons: up and down.When you at floor i,if you press the button "UP" , you will go up Ki floor,i.e,you will go to the i+Ki th floor,as the same, if you press the button "DOWN" , you will go down Ki floor,i.e,you will go to the i-Ki th floor. Of course, the lift can't go up high than N,and can't go down lower than 1. For example, there is a buliding with 5 floors, and k1 = 3, k2 = 3,k3 = 1,k4 = 2, k5 = 5.Begining from the 1 st floor,you can press the button "UP", and you'll go up to the 4 th floor,and if you press the button "DOWN", the lift can't do it, because it can't go down to the -2 th floor,as you know ,the -2 th floor isn't exist.
    Here comes the problem: when you are on floor A,and you want to go to floor B,how many times at least he has to press the button "UP" or "DOWN"?
     
    Input
    The input consists of several test cases.,Each test case contains two lines.
    The first line contains three integers N ,A,B( 1 <= N,A,B <= 200) which describe above,The second line consist N integers k1,k2,....kn.
    A single 0 indicate the end of the input.
     
    Output
    For each case of the input output a interger, the least times you have to press the button when you on floor A,and you want to go to floor B.If you can't reach floor B,printf "-1".
     
    Sample Input
    5 1 5
    3 3 1 2 5 0
     
    Sample Output
    3
     
     
    #include<iostream>
    #include<cstring>
    #include<string>
    #include<algorithm>
    #include<cstdio>
    using namespace std;
    const int inf = 1000000;
    const int maxn = 210;
    int lowcost[maxn],s[maxn],edge[maxn][maxn],n;
    void dijkstra(int v0)
    {
        int i , j;
        memset(lowcost,0,sizeof(lowcost));
        for(i=1;i<=n;i++)
        {
            lowcost[i] = edge[v0][i];
            s[i] = 0;
        }
    //    s[v0] = 1;
        for(i=1;i<=n;i++)
        {
            int min = inf,v=0;
            for(j=1;j<=n;j++)
            {
                if(!s[j] && lowcost[j] < min)
                {
                    min = lowcost[j];
                    v = j;
                }
            }
            if(min==inf)break;
            s[v] =1;
            for(j=1;j<=n;j++)
            {
                if(!s[j] && edge[v][j] < inf && lowcost[v] + edge[v][j] < lowcost[j])
                {
                    lowcost[j] = edge[v][j] + lowcost[v];
                }
            }
        }
    }
    int main()
    {
        int floor_from,floor_to,x[maxn],i,j;
        while(scanf("%d",&n)!=EOF && n)
        {
            scanf("%d %d",&floor_from,&floor_to);
            for(i=1;i<=n;i++)
            {
                for(j=1;j<=n;j++)
                {
                    if(i==j)
                        edge[i][j] = 0;
                    else
                        edge[i][j] = inf;
                }
            }
            for(i=1;i<=n;i++)
            {
                scanf("%d",&x[i]);
                if(i+x[i]<=n)
                {
                    edge[i][i+x[i]] =1;
                }
                if(i-x[i]>=1)
                {
                    edge[i][i-x[i]] = 1;
                }
            }
            dijkstra(floor_from);
            if(lowcost[floor_to] == inf) 
                printf("-1
    ");
            else
                printf("%d
    ",lowcost[floor_to]);
        }
        return 0;
    }
  • 相关阅读:
    第五周学习总结-20175228
    第二周Java学习总结
    namke 命令行编译
    libssh2 的集成与应用
    vc6 编译问题
    vs2010 编译curl-7.42.1
    linux redis 安装
    解决error C2011: 'fd_set' : 'struct' type redefinition的方法
    ajax 的简单应用
    servlet 启动加载配置文件及初始化
  • 原文地址:https://www.cnblogs.com/Deng1185246160/p/3229293.html
Copyright © 2011-2022 走看看