zoukankan      html  css  js  c++  java
  • Robot's Task(机器人破解计算机)

    Description

    Robot Doc is located in the hall, with n computers stand in a line, numbered from left to right from 1 to n. Each computer contains exactly one piece of information, each of which Doc wants to get eventually. The computers are equipped with a security system, so to crack the i-th of them, the robot needs to collect at least ai any pieces of information from the other computers. Doc can hack the computer only if he is right next to it.

    The robot is assembled using modern technologies and can move along the line of computers in either of the two possible directions, but the change of direction requires a large amount of resources from Doc. Tell the minimum number of changes of direction, which the robot will have to make to collect all n parts of information if initially it is next to computer with number 1.

    It is guaranteed that there exists at least one sequence of the robot's actions, which leads to the collection of all information. Initially Doc doesn't have any pieces of information.

    Input

    The first line contains number n (1 ≤ n ≤ 1000). The second line contains n non-negative integers a1, a2, ..., an (0 ≤ ai < n), separated by a space. It is guaranteed that there exists a way for robot to collect all pieces of the information.

    Output

    Print a single number — the minimum number of changes in direction that the robot will have to make in order to collect all n parts of information.

    Sample Input

    Input

    3
    0 2 0
    

    Output

    1
    

    Input

    5
    4 2 3 0 1
    

    Output

    3
    

    Input

    7
    0 3 1 0 5 2 6
    

    Output

    2
    

    Sample Output

    Hint

    In the first sample you can assemble all the pieces of information in the optimal manner by assembling first the piece of information in the first computer, then in the third one, then change direction and move to the second one, and then, having 2 pieces of information, collect the last piece.

    In the second sample to collect all the pieces of information in the optimal manner, Doc can go to the fourth computer and get the piece of information, then go to the fifth computer with one piece and get another one, then go to the second computer in the same manner, then to the third one and finally, to the first one. Changes of direction will take place before moving from the fifth to the second computer, then from the second to the third computer, then from the third to the first computer.

    In the third sample the optimal order of collecting parts from computers can look like that: 1->3->4->6->2->5->7.

    题意:有个机器人要破解所有计算机,破解第i台计算机前,需要破解n台其他计算机,只有当资源点数大于或等于这台电脑的能量点数才可以破开,就可以得到一个资源。机器人起始位置在1,资源点数0,问破解所有计算机最少需要改变方向多少次。

    #include<stdio.h>
    
    int main()
    {
        int n,a[1000],i,sum=0;
        while(~scanf("%d",&n))
        {
            for(i=0;i<n;i++)
                scanf("%d",&a[i]);
            int h=0;//经验值
            int ans=0;
            int f=0;//从前往后走f=0,反过来f=1
            int b[1000]={0};i=0;
            while(1)
            {
                while(i<n&&i>=0)
                {
                    if(h>=a[i]&&b[i]==0)
                    {
                        h++;
                        b[i]=1;
                    }
                    if(f==0)
                        i++;
                    else
                        i--;
                }
                if(f==0)
                {
                    i=n-1;f=1;
                }
                else
                {
                    i=0;
                    f=0;
                }
                if(h==n)//都破译完的标志
                    break;
                ans++;
            }
            printf("%d
    ",ans);
        }
        return 0;
    }
  • 相关阅读:
    Echarts Jqplot嵌extjs4 windows 装配方法
    法学类人猿生存方案--升华成掌握可能的方式
    LeetCode Merge k Sorted Lists 解决报告
    Swift
    Swift
    Swift
    Swift
    Swift
    Swift
    Swift
  • 原文地址:https://www.cnblogs.com/zcy19990813/p/9702827.html
Copyright © 2011-2022 走看看