HDU 1211

水。模拟即可。使用EXGCD求逆元

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#define LL __int64
using namespace std;

LL p,q,e,n,f,d;

void exgcd(LL a,LL b,LL &x,LL &y){
	if(b==0){
		x=1; y=0;
		return ;
	}
	exgcd(b,a%b,x,y);
	LL tmp=x;
	x=y;
	y=tmp-(a/b)*y;
}

LL quick(LL a,LL b,LL m){
	a%=m;
	LL ans=1;
	while(b){
		if(b&1)
		ans=(ans*a)%m;
		b>>=1;
		a=(a*a)%m;
	}
	return ans;
}

int main(){
	LL l,num;
	LL x,y;
	while(scanf("%I64d%I64d%I64d%I64d",&p,&q,&e,&l)!=EOF){
		n=p*q; 
		f=(p-1)*(q-1);
		exgcd(e,f,x,y);
		x=(x%f+f)%f;
		for(LL i=1;i<=l;i++){
			scanf("%I64d",&num);
			int ans=(int)quick(num,x,n);
			printf("%c",ans);
		}
		printf("\n");
	}
	return 0;
}

  

转载于:https://www.cnblogs.com/jie-dcai/p/3978074.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值