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;
    }
  • 相关阅读:
    【zz】编程修养(一二三)
    Lec1计算字符串的相似度
    ASP.NETFLV处理流代码
    获取指定文件夹下所有子目录及文件(树形)
    Flex及AS3的百条常用知识(转载)
    [AS3] 解决跨域问题
    Asp.Net 文件操作基类(读取,删除,批量拷贝,删除,写入,获取文件夹大小,文件属性,遍历目录)
    ASP.NET中的File类和Directory类的相关知识
    Asp.net 备份、还原Ms SQLServer及压缩Access数据库
    http://blog.csdn.net/octverve/archive/2008/01/29/2071356.aspx
  • 原文地址:https://www.cnblogs.com/Deng1185246160/p/3229293.html
Copyright © 2011-2022 走看看