bzoj 2242(快速幂+扩展欧几里得+BSGS)

传送门
题解:略,几个模板ho在一起就完了。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mop=1e5+4;
inline ll mult(ll x,ll y,ll MOD) {
    x%=MOD,y%=MOD;
    return ((x*y-(ll)(((long double)x*y+0.5)/MOD)*MOD)%MOD+MOD)%MOD;
}
inline ll fpow(ll a,ll b,ll MOD) {
    ll ret=1;
    while (b) {
        if (b&1) ret=mult(ret,a,MOD);
        b>>=1,a=mult(a,a,MOD); 
    }
    return ret;
}
inline ll inv(ll a,ll p) {
    if (a%p==0) return -1;
    return fpow(a,p-2,p);
}
struct Hash_{
    int head[mop],last[mop],etot;
    ll dest[mop][2];
    void init(){
        memset(head,0,sizeof(head));
        etot=0;
    }
    void add(ll a,ll b){
        int key=a%mop;
        for(int t=head[key];t;t=last[t])
            if(dest[t][0]==a) return;
        last[++etot]=head[key];
        dest[etot][0]=a;
        dest[etot][1]=b;
        head[key]=etot;
    }
    ll query(int a){
        int key=a%mop;
        for(int t=head[key];t;t=last[t])
            if(dest[t][0]==a) return dest[t][1];
        return -1;
    }
}has;
inline ll BSGS(ll g, ll a,ll p){
    if (g%p==0) return -1;
    has.init();
    ll m=(ll)ceil(sqrt(a))+1;
    ll cur=1;
    for(register int i=0;i<m;++i,cur=mult(cur,g,p)){
        if(cur==a) return i;
        has.add(cur,i);
    }
    ll base=inv(cur,p);
    cur=mult(base,a,p);
    for(register int i=m;i<=p-1;i+=m,cur=mult(cur,base,p)) {
        ll j=has.query(cur);
        if(~j) return j+i;
    }
    return -1;
}
int main() {
    int kase,type;
    scanf("%d%d",&kase,&type);
    while (kase--) {
        ll a,b,p;
        scanf("%lld%lld%lld",&a,&b,&p);
        switch (type) {
        case 1:{
                cout<<fpow(a,b,p)<<endl;
                break;
            }
            case 2:{
                ll ans=inv(a,p);
                if (~ans) cout<<ans*b%p<<endl;
                else cout<<"Orz, I cannot find x!\n";
                break;
            }
            case 3:{
                ll ans=BSGS(a,b,p);
                if (~ans) cout<<ans<<endl;
                else cout<<"Orz, I cannot find x!\n";
                break;
            }
        }
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值