A and 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:

add 11 to aa, then a=2a=2 and b=3b=3;
add 22 to bb, then a=2a=2 and b=5b=5;
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
3
1 3
11 11
30 20
Output
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=30).
思路:
在这里插入图片描述
很好的一道题目,直接给整蒙圈了。。
代码如下:

#include<bits/stdc++.h>
#define ll long long
using namespace std;

const int maxx=1e5+100;
int x[maxx];
int a,b;

inline int init()
{
	x[0]=0;
	for(int i=1;;i++)
	{
		x[i]=x[i-1]+i;
		if(x[i]>1000000000) return i-1;
	}
}
int main()
{
	int t;
	scanf("%d",&t);
	int n=init();
	while(t--)
	{
		scanf("%d%d",&a,&b);
		int c=abs(a-b);
		int pos=lower_bound(x,x+1+n,c)-x;
		if((x[pos]-c)%2==0) cout<<pos<<endl;
		else{
			if((pos+1)%2==0) cout<<pos+2<<endl;
			else cout<<pos+1<<endl;
		}
	}
	return 0;
}

努力加油a啊,(o)/~

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

starlet_kiss

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值