• [1170] Steps

  • 时间限制: 1000 ms 内存限制: 65535 K
  • 问题描述
  • 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.
  • 输入
  • This problem has several cases of cases.
    Each case consists of a line containing n, the number of test cases. 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.
  • 样例输入
  • 3
    45 48
    45 49
    45 50
    
  • 样例输出
  • 3
    3
    4
    
  • 提示
  • 来源
  • Waterloo
  • 操作

显示春菜