B. A and B

链接:https://codeforces.com/problemset/problem/1278/B

You are given two integers aa and bb. You can perform a sequence of operations: during the first operation you choose one of these numbers and increase it by 11; during the second operation you choose one of these numbers and increase it by 22, and so on. You choose the number of these operations yourself.

For example, if a=1a=1 and b=3b=3, you can perform the following sequence of three operations:

  1. add 11 to aa, then a=2a=2 and b=3b=3;
  2. add 22 to bb, then a=2a=2 and b=5b=5;
  3. add 33 to aa, then a=5a=5 and b=5b=5.

Calculate the minimum number of operations required to make aa and bb equal.

Input

The first line contains one integer tt (1≤t≤1001≤t≤100) — the number of test cases.

The only line of each test case contains two integers aa and bb (1≤a,b≤1091≤a,b≤109).

Output

For each test case print one integer — the minimum numbers of operations required to make aa and bb equal.

Example

input

Copy

3
1 3
11 11
30 20

output

Copy

3
0
4

Note

First test case considered in the statement.

In the second test case integers aa and bb are already equal, so you don't need to perform any operations.

In the third test case you have to apply the first, the second, the third and the fourth operation to bb (bb turns into 20+1+2+3+4=3020+1+2+3+4=30).

代码:

#include <bits/stdc++.h>
using namespace std;
long long t,n,m,a,b; 
int main()
{
    cin>>t;
    while(t--)
    {
    	cin>>a>>b;
    	n=min(a,b);
    	m=max(a,b);
    	long long k=m-n,s=0,l=0;
    	if(k==0)
    	{
    		cout<<0<<endl;
    		continue;
    	}
    	
    	
    	for(int i=1;;i++)
    	{
    		s+=i;
    		if(s-k>=0&&(s-k)%2==0)
    		{
    			l=i;
    			break;
    		}
    	}
    	cout<<l<<endl;
    }
}

 

全部评论

相关推荐

牛客37185681...:马德,我感觉这是我面过最恶心的公司,一面是两个女hr,说什么实习前几个月属于试用期,试用期过了才能转成正式实习生,我***笑了,问待遇就是不说,问能不能接受全栈,沙币公司
如果可以选,你最想去哪家...
点赞 评论 收藏
分享
码客明:其实东西都是那一套,但是不同的方向会自己造轮子,然后方便汇报。一个同样的工具不同的方向做好几个工具,然后大同小异,汇报的时候说根据我们的团队和业务情况开发一个适合我们平台的xx工具。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务