原题链接:http://codeforces.com/problemset/problem/1311/A
题意:给你一个整数a,能够进行两种操作,问进行多少次操作后能变成整数b。
解题思路:我们进行操作选取的数是任意大的,相当于我们只要判断一下a和b的关系则题解。
AC代码:
/*
*注:代码如有问题请私信我或在评论区留言,谢谢支持。
*/
//低版本G++编译器不支持,若使用这种G++编译器此段应注释掉
//i为循环变量,a为初始值,n为界限值,递增
//i为循环变量, a为初始值,n为界限值,递减。
using namespace std;
const int inf = 0x3f3f3f3f;//无穷大
const int maxn = 1e5;//最大值。
typedef long long ll;
typedef long double ld;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
//*******************************分割线,以上为代码自定义代码模板***************************************//
int main(){
//freopen("in.txt", "r", stdin);//提交的时候要注释掉
ios::sync_with_stdio(false);//打消iostream中输入输出缓存,节省时间。
cin.tie(0); cout.tie(0);//可以通过tie(0)(0表示NULL)来解除cin与cout的绑定,进一步加快执行效率。
int t;
int a,b;
while(cin>>t){
while(t--){
cin>>a>>b;
if(a==b){
cout<<"0"<<endl;
}
else if(a>b){
if((a-b)%2){
cout<<"2"<<endl;
}
else
cout<<"1"<<endl;
}
else{
if((b-a)%2){
cout<<"1"<<endl;
}
else{
cout<<"2"<<endl;
}
}
}
}
return 0;
}