zoukankan      html  css  js  c++  java
  • 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("
    ");
    	}
    	return 0;
    }
    

      

  • 相关阅读:
    maven-仓库
    maven-坐标与依赖
    maven-认识
    mysql-介绍
    redis-主从复制
    UVA
    UVA
    UVA
    UVA
    [ Java学习 ] 查阅资料整理 004
  • 原文地址:https://www.cnblogs.com/jie-dcai/p/3978074.html
Copyright © 2011-2022 走看看