zoukankan      html  css  js  c++  java
  • ZOJ 1871:Steps

    Steps

    Time Limit: 2 Seconds      Memory Limit: 65536 KB

    One steps through integer points of the straight line. The length of a step must be nonnegative and can be by one bigger than, equal to, or by one smaller than the length of the previous step. 

    What is the minimum number of steps in order to get from x to y? The length of the first and the last step must be 1.


    Input

    For each test case, a line follows with two integers: 0 <= x <= y < 2^31.


    Output

    For each test case, print a line giving the minimum number of steps to get from x to y.


    Sample Input

    45 48
    45 49
    45 50


    Sample Output

    3
    3
    4


    Source: University of Waterloo Local Contest 2000.01.29

    你  离  开  了  ,  我  的  世  界  里  只  剩  下  雨  。  。  。

    #include<iostream>
    using namespace std;
    int main()
    {
        long a,b,d;
        int c,step;
        while(cin>>a>>b)
        {
            d=b-a,c=1,step=0;
            while(1)
            {
                if(d<2*c)break;
                else
                {
                    d=d-2*c;
                    step+=2;
                    c++;
                }
            }
            if(d>c)step+=2;
            else if(d<=0)step+=0;
            else step+=1;
            cout<<step<<endl;
        }
        return 0;
    }
    

  • 相关阅读:
    Vue的style与class
    position记录
    JS 原型模式创建对象
    Js 栈和堆的实现
    slice深拷贝数组
    Vue路由query传参
    Object.prototype.toString.call(value)
    Node里面的对象创建问题
    Django模板语言 标签整理
    JavaScript基础
  • 原文地址:https://www.cnblogs.com/im0qianqian/p/5989575.html
Copyright © 2011-2022 走看看