题意:给sum,m组询问,每组x,y求\(x^t=y\mod p,p|sum\),p是素数,求最小的t

题解:先处理sum的所有质因子p,求出p的原根rt,\(rt^a=x\mod p,rt^b=y\mod p\),\(rt^{a*t}=rt^b\mod p\),

\(a*t=b\mod p-1\),先预处理bsgs的表,然后求出ab,再exgcd求t,找最小值

//#pragma GCC optimize(2)
//#pragma GCC optimize(3)
//#pragma GCC optimize(4)
//#pragma GCC optimize("unroll-loops")
//#pragma comment(linker, "/stack:200000000")
//#pragma GCC optimize("Ofast,no-stack-protector")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include<bits/stdc++.h>
//#include <bits/extc++.h>
#define fi first
#define se second
#define db double
#define mp make_pair
#define pb push_back
#define mt make_tuple
//#define pi acos(-1.0)
#define ll long long
#define vi vector<int>
#define mod 1000000007
#define ld long double
//#define C 0.5772156649
#define ls l,m,rt<<1
#define rs m+1,r,rt<<1|1
#define sqr(x) ((x)*(x))
#define pll pair<ll,ll>
#define pil pair<int,ll>
#define pli pair<ll,int>
#define pii pair<int,int>
#define ull unsigned long long
#define bpc __builtin_popcount
#define base 1000000000000000000ll
#define fin freopen("a.txt","r",stdin)
#define fout freopen("a.txt","w",stdout)
#define fio ios::sync_with_stdio(false);cin.tie(0)
#define mr mt19937 rng(chrono::steady_clock::now().time_since_epoch().count())
inline ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}
inline void sub(ll &a,ll b){a-=b;if(a<0)a+=mod;}
inline void add(ll &a,ll b){a+=b;if(a>=mod)a-=mod;}
template<typename T>inline T const& MAX(T const &a,T const &b){return a>b?a:b;}
template<typename T>inline T const& MIN(T const &a,T const &b){return a<b?a:b;}
inline ll mul(ll a,ll b,ll c){return (a*b-(ll)((ld)a*b/c)*c+c)%c;}
inline ll qp(ll a,ll b){ll ans=1;while(b){if(b&1)ans=ans*a%mod;a=a*a%mod,b>>=1;}return ans;}
inline ll qp(ll a,ll b,ll c){ll ans=1;while(b){if(b&1)ans=mul(ans,a,c);a=mul(a,a,c),b>>=1;}return ans;} using namespace std;
//using namespace __gnu_pbds; const ld pi=acos(-1);
const ull ba=233;
const db eps=1e-5;
const ll INF=0x3f3f3f3f3f3f3f3f;
const int N=1000000+7,maxn=2000000+10,inf=0x3f3f3f3f; struct prime{
int p,rt; struct HashTable
{
int top, head[N];
struct Node
{
int x, y, next;//x是原根p的幂,y是幂次数,next是y+1次幂所在的head桶
}node[N];
void init()
{
top = 0;
memset(head, 0, sizeof(head));
}
void Insert(int x, int y)
{
node[top].x = x; node[top].y = y; node[top].next = head[x%N];
head[x%N] = top++;
}
int Find(int x)//求出x是原根proot的几次幂
{
for (int tx = head[x%N]; tx; tx = node[tx].next)
if (node[tx].x == x)return node[tx].y;
return -1;
}
}ma; void init()
{
ma.init();
int a=rt;
int m=100000,now=1;
ma.Insert(now,0);
for(int i=1;i<=m;i++)
{
now=(1ll*now*a)%p;
ma.Insert(now,i);
}
}
int query(int b)
{
int m=100000;
int ans=-1,t=qp(rt,m,p),now=qp(b,p-2,p);
for(int i=1;i<=m;i++)
{
now=1ll*now*t%p;
int te=ma.Find(now);
if(~te)
{
ans=i*m-te;
break;
}
}
if(ans!=-1)ans=(ans%p+p)%p;
return ans;
}
}p[15];
vi v;
int findroot(int n)
{
int p=n-1;v.clear();
for(int i=2;i*i<=p;i++)if(p%i==0)
{
v.pb(i);
while(p%i==0)p/=i;
}
if(p!=1)v.pb(p);
for(int i=1;i<=n;i++)
{
bool ok=1;
for(int j=0;j<v.size();j++)
if(qp(i,(n-1)/v[j],n)==1)
ok=0;
if(ok)return i;
}
}
ll exgcd(ll a,ll b,ll &x,ll &y)
{
if(!b){x=1,y=0;return a;}
ll ans=exgcd(b,a%b,x,y);
ll t=x;x=y;y=t-a/b*y;
return ans;
}
int main()
{
int t,cas=0;scanf("%d",&t);
while(t--)
{
int cnt=0;
int s,m;scanf("%d%d",&s,&m);
for(int i=2;i*i<=s;i++)if(s%i==0)
{
p[++cnt].p=i,p[cnt].rt=findroot(i),p[cnt].init();
while(s%i==0)s/=i;
}
if(s!=1)p[++cnt].p=s,p[cnt].rt=findroot(s),p[cnt].init();
printf("Case #%d:\n",++cas);
for(int o = 1; o <= m; o++)
{
int x,y,ans=inf;scanf("%d%d",&x,&y);
for(int i=1;i<=cnt;i++)
{
int a=p[i].query(x),b=p[i].query(y);
assert(a!=-1&&b!=-1);
if(b%gcd(a,p[i].p-1)!=0)continue;
else
{
ll c,d;
exgcd(a,p[i].p-1,c,d);
c=c*b/gcd(a,p[i].p-1);
ll te=(p[i].p-1)/gcd(a,p[i].p-1);
c=(c%te+te)%te;
ans=min(ans,(int)c);
}
}
printf("%d\n",ans==inf?-1:ans);
}
}
return 0;
}
/********************
1
175 2
2 3
********************/

HDU5377的更多相关文章

随机推荐

  1. pyJWT

    现在用JWT 加密太火了,怎么能不跟上潮流?否则销售都不好意思出去吹牛逼! PyJWT是一个Python库,用来编码/解码JWT(JSON Web Token)的 1.定义:根据维基百科的定义,JSO ...

  2. 什么是URI、URL、URN、URC和Data URI?

    前言 不知道大家有没有电话拨号通过'猫'上网的经历,那时测试网络是否连接,最好的方式就是打开浏览器输入: www.baidu.com 那会管这一连串字母叫' 网址 '.之后上大学(计算机专业),知道了 ...

  3. LVS DR模拟实验

    准备多台服务器,现以三台服务器为例第一台做调度器 192.168.200.111[root@localhost ~]# iptables -F[root@localhost ~]# setenforc ...

  4. XOR linked list--- 异或链表

    异或链表的结构 这是一个数据结构.利用计算机的的位异或操作(⊕),来降低双向链表的存储需求. ... A B C D E ... –> next –> next –> next –& ...

  5. 使用sqlyog工具同步两个相同结构的数据库之间的数据

    compare two database data 因为工作上遇到 同一个项目被部署到不同服务器上,原项目(后统称"源")在运行中,后部署的项目(后统称"目标" ...

  6. Deployment的使用

    RC和RS的功能基本上是差不多的,唯一的区别就是RS支持集合的selector. RC|RS是Kubernetes的一个核心概念,当我们把应用部署到集群之后,需要保证应用能够持续稳定的运行,RC|RS ...

  7. 移动端使用fastclick 解决

    html vue 1. cnpm i fastclick --save 2. 在main.js中引入并绑定到body import fastclick from 'fastclick'; 3. fas ...

  8. The chance for love doesn't come around every day.

    The chance for love doesn't come around every day.爱的机会不是每天都有的.

  9. QueryList 来做采集是什么样子

    采集百度搜索结果列表的标题和链接. $data = QueryList::get('https://www.baidu.com/s?wd=QueryList') // 设置采集规则 ->rule ...

  10. 使用GDI+绘制的360风格按钮控件

    将下面的代码拷贝到一个单元中,创建一个包,加入这个单元后安装.使用的时候设置好背景颜色,边框颜色,图标(png格式)相对路径的文件名称.这个控件可以利用PNG图像的颜色透明特性,背景色默认透明度为50 ...