Codeforces Round 729 (Div. 2)B. Plus and Multiply(构造、数学)

题面

image

链接

B. Plus and Multiply

题意

给定 n , a , b n,a,b nab
可以进行的操作

  1. ∗ a *a a
  2. + b +b +b

最开始的数是1
问能否经过上面的两种操作将1变为n

题解

这题的关键是能不能想出来这个集合里面的数的统一的表达形式
所有数都可以表示为
a x + y ∗ b a^x+y * b ax+yb
然后只要存在 x x x y y y,使得 a x + y ∗ b = n a^x+y * b=n ax+yb=n即可
对上式进行等价变换可以得到
( n − a x ) ≡ 0 ( m o d b ) (n-a^x)\equiv0\quad (mod \quad b) (nax)0(modb)
还有需要注意的是特判 a = 1 a=1 a=1的情况,因为 a = 1 a=1 a=1时会陷入死循环

代码

#include <bits/stdc++.h> 
#define int long long
#define rep(i,a,b) for(int i = (a); i <= (b); ++i)
#define fep(i,a,b) for(int i = (a); i >= (b); --i)
#define pii pair<int, int>
#define pll pair<long long, long long>
#define ll long long
#define db double
#define endl '\n'
#define x first
#define y second
#define pb push_back

using namespace std;
const int N=2e5+10;
int a[N];
void solve()
{
	int n,a,b;
	cin>>n>>a>>b;
	if(a==1){
		cout<<((n%b)==(1%b)?"YES":"NO")<<endl;
		return;
	}
	for(int i=1;i<=n;i*=a){
		if((n-i)%b==0){
			cout<<"YES"<<endl;
			return;
		}
	}
	cout<<"NO"<<endl;
}

signed main(){
	ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
//   	freopen("1.in", "r", stdin);
  	int _;
	cin>>_;
	while(_--)
	solve();
	return 0;
}

总结

对数学推式子的能力还是太差,需要多练

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值