Timus - 1110. Power 除尽问题

本文介绍了一种快速求解形如X^N mod M = Y的整数方程的方法,通过在相乘过程中不断取模的方式避免了大数运算,确保了计算效率和准确性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

You are given the whole numbersN,MandY. Write a program that will find all whole numbersXin the interval [0,M− 1] such thatXNmodM=Y.

Input

The input contains a single line withN,MandY(0<N<999, 1<M<999, 0<Y<999) separated with one space.

Output

Output all numbersXseparated with space on one line. The numbers must be written in ascending order. If no such numbers exist then output −1.

Sample

input output
2 6 4
2 4


这个需要计算pow(x, n),那么数值肯定很大,如果使用大数乘法来算这道题是可以的,但是我试过会超时,所以这里只能取巧了。

思路: 相乘之后取模和相乘之中任何时候取模的结果都是一样的,利用这个特性就可以做出这道题目来.

下面程序多次相乘之中取模,和最后乘完再取模的到的结果是一样的,所以本程序结果正确,速度也很快。

void Power1110_2()
{
	int n, m, y;
	cin>>n>>m>>y;
	bool has_num = false;
	for (int i = 0; i < m; i++)
	{
		int ans = i;
		for (int j = 1; j < n; j++)
		{
			ans *= i;
			ans %= m;
		}
		if (ans == y)
		{
			has_num = true;
			cout<<i<<' ';
		}
	}
	if (!has_num) cout<<-1;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值