Educational Codeforces Round 78 (Rated for Div. 2) B 思维题

题面
Educational Codeforces Round 78 (Rated for Div. 2) B 思维题_第1张图片
题意:
t组数据,每组数据有两个数为a,b;定义一种操作是:对于第i步操作我们可以选择将i加到a或者b上,问最少的操作数使这两个数相等。
思路:1,我们假设两个数在第n步的时候相等了,记录这n步加到a,b上的总和为sum,那么可以推出sum一定大于等于刚开始的abs(a,b)之差,这虽然是肯定的,但思考为什么要这样做,我们要使a,b在某一步操作的时候相等,假如先假设a,b刚开始都相等,那么接下来的操作不是加到a,上就是加到b,上换句话说他们之间的差值不是增大就是减小,如果只有这一个条件并不能得出n的确定值,所以分析下是否还存在其他的条件,我们假设使他们之间的差值增大的数为x,减小的数为y那么存在x+y=(n+1)n/2, abs(a-b)+x-y=0 联立可以得到
Educational Codeforces Round 78 (Rated for Div. 2) B 思维题_第2张图片
我们可以直接枚举n找到第一个奇数的平方是1+16
x+8(abs(a-b)) 可以假设x等于0
去找最小的n,当然还要一种巨佬的做法是
在这里插入图片描述
附上大佬博客:
最后传上代码:

/*
Keep clam  Believe youself
*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define Xiaobo main
using namespace std;
const int maxn=2e5+7;
const int mod=1e9+7;
const double eps=1e-15;
const double pi=acos(-1);
const int INF=0x3f3f3f;
typedef long long ll;
ll read(){ll c = getchar(),Nig = 1,x = 0;while(!isdigit(c) && c!='-')c = getchar();if(c == '-')Nig = -1,c = getchar();while(isdigit(c))x = ((x<<1) + (x<<3)) + (c^'0'),c = getchar();return Nig*x;}
ll gcd(ll a,ll b){ return b==0?a:gcd(b,a%b);}
int Xiaobo()
{
	int t;
	scanf("%d",&t);
	while(t--) {
		ll a,b;
		scanf("%lld %lld",&a,&b);
		ll sum=0;
		ll dis=abs(a-b);
		ll cnt=0;
		while(sum

你可能感兴趣的:(Acm之旅___思维)