POJ2590:Steps

来源:互联网 发布:淘宝下架立刻就上架吗 编辑:程序博客网 时间:2024/05/23 01:57

Description

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

Input consists of a line containing n, the number of test cases.

Output

For each test case, a line follows with two integers: 0 <= x <= y < 2^31. For each test case, print a line giving the minimum number of steps to get from x to y.

Sample Input

345 4845 4945 50

Sample Output

334
 
//纯规律水题
 
#include <iostream>#include <cmath>using namespace std;int main(){    int x,y,n;    cin >> n;    while(n--)    {        cin >> x >> y;        cout << (int)(sqrt(y-x)*2-1e-9) << endl;    }    return 0;}

原创粉丝点击