【BZOJ 2242】[SDOI2011]计算器

Description

你被要求设计一个计算器完成以下三项任务:

1、给定y,z,p,计算Y^Z Mod P 的值;

2、给定y,z,p,计算满足xy≡ Z ( mod P )的最小非负整数;

3、给定y,z,p,计算满足Y^x ≡ Z ( mod P)的最小非负整数。

Input

输入包含多组数据。

第一行包含两个正整数T,K分别表示数据组数和询问类型(对于一个测试点内的所有数据,询问类型相同)。

以下行每行包含三个正整数y,z,p,描述一个询问。

Output

对于每个询问,输出一行答案。对于询问类型2和3,如果不存在满足条件的,则输出“Orz, I cannot find x!”,注意逗号与“I”之间有一个空格。

Sample Input

【样例输入1】
3 1
2 1 3
2 2 3
2 3 3
【样例输入2】
3 2
2 1 3
2 2 3
2 3 3
【数据规模和约定】
对于100%的数据,1<=y,z,p<=10^9,为质数,1<=T<=10。

Sample Output

【样例输出1】
2
1
2
【样例输出2】
2
1
0

第一问第二问略过,第三问BSGS

-------------------------------------------------------------叫我分割线-----------------------------------------------------------

什么是BSGS呢?即baby-step-giant-step,翻译成中文就是小步大步法,用于解决类似x^y=z(mod  p) 求最小的y这样的问题(也许还能干别的,但本人弱渣,并不知道)

对于上面那个题目的推导

有点凌乱,等我想明白的再补

 1 #include<cstdio>
 2 #define ll long long
 3 #include<map>
 4 #include<cmath>
 5 using namespace std;
 6 int T,k;
 7 ll pow(ll x,int y,int p){
 8     ll ans=1;
 9     while(y>0){
10         if (y&1==1) ans=(ans*x)%p;
11         y=y>>1;
12         x=(x*x)%p;
13     }
14     return ans;
15 }
16
17 int gcd(int x,int y){
18     if (x%y==0) return y;
19     return gcd(y,x%y);
20 }
21
22 void exgcd(int a,int b,int &x,int &y){
23     if (b==0){x=1,y=0;return;}
24     exgcd(b,a%b,x,y);
25     int t=x;x=y;y=t-(a/b)*y;
26 }
27
28 void solve2(int a,int z,int b){
29     int tmp=gcd(a,b),x,y;
30     if (z%tmp){printf("Orz, I cannot find x!\n");return;}
31     exgcd(a,b,x,y);
32     x=((ll)x*(z/tmp))%b;
33     while (x>0) x-=b/tmp;
34     while (x<0) x+=b/tmp;
35     printf("%d\n",x);
36 }
37
38 map<int,int> mp;
39 void solve3(int y,int z,int p){
40     y%=p;
41     if (!y&&!z) {printf("1\n");return;}
42     if (!y){printf("Orz, I cannot find x!\n");return;}
43     mp.clear();
44     ll m=ceil(sqrt(p)),t=1;
45         mp[1]=m+1;//y^0==1;
46     for (int i=1;i<m;i++){
47         t=t*y%p;
48         if (!mp[t]) mp[t]=i;
49     }
50     ll tmp=pow(y,p-1-m,p),ine=1;
51     for (int k=0;k<m;k++){
52         int i=mp[z*ine%p];
53         if (i){
54             if (i==m+1)i=0;
55             printf("%d\n",k*m+i);
56             return;
57         }
58         ine=ine*tmp%p;
59     }
60     printf("Orz, I cannot find x!\n");
61 }
62
63 int main(){
64     scanf("%d%d",&T,&k);
65     while (T--){
66         int y,z,p;
67         scanf("%d%d%d",&y,&z,&p);
68         if (k==1) printf("%lld\n",pow(y,z,p));
69         if (k==2) solve2(y,z,p);
70         if (k==3) solve3(y,z,p);
71     }
72 }
时间: 2024-12-07 01:57:18

【BZOJ 2242】[SDOI2011]计算器的相关文章

BZOJ 2242: [SDOI2011]计算器( 快速幂 + 扩展欧几里德 + BSGS )

没什么好说的... --------------------------------------------------------------------- #include<cstdio> #include<cmath> #include<map> using namespace std; typedef long long ll; int MOD; void gcd(int a, int b, int& d, int& x, int& y)

bzoj 2242 [SDOI2011]计算器(数论知识)

Description 你被要求设计一个计算器完成以下三项任务: 1.给定y,z,p,计算Y^Z Mod P 的值: 2.给定y,z,p,计算满足xy≡ Z ( mod P )的最小非负整数: 3.给定y,z,p,计算满足Y^x ≡ Z ( mod P)的最小非负整数. Input 输入包含多组数据. 第一行包含两个正整数T,K分别表示数据组数和询问类型(对于一个测试点内的所有数据,询问类型相同). 以下行每行包含三个正整数y,z,p,描述一个询问. Output 对于每个询问,输出一行答案.对

BZOJ 2242 [SDOI2011]计算器(快速幂+Exgcd+BSGS)

[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=2242 [题目大意] 给出T和K 对于K=1,计算 Y^Z Mod P 的值 对于K=2,计算满足 xy≡ Z ( mod P ) 的最小非负整数 对于K=3,计算满足 Y^x ≡ Z ( mod P) 的最小非负整数 [题解] K=1情况快速幂即可 K=2情况用exgcd求解 K=3用BSGS求解 [代码] #include <cstdio> #include <cmath&

[原博客] BZOJ 2242 [SDOI2011] 计算器

题目链接 noip级数论模版题了吧.让求三个东西: 给定y,z,p,计算Y^Z Mod P 的值. 给定y,z,p,计算满足xy≡ Z ( mod P )的最小非负整数. 给定y,z,p,计算满足Y^x ≡ Z ( mod P)的最小非负整数. 其中P均为素数.来分着处理. 1 y^z%p 快速幂.推荐一种又快又好写的写法. 1 LL power_mod(LL a,LL b,LL p){ //get a^b%p 2 LL ret=1; 3 while(b){ 4 if(b&1) ret = re

bzoj 2242: [SDOI2011]计算器 &amp; BSGS算法笔记

这题的主要难点在于第三问该如何解决 于是就要知道BSGS是怎样的一种方法了 首先BSGS是meet in the middle的一种(戳下面看) http://m.blog.csdn.net/blog/zentropy/11200099 看完链接后再看以下内容 --------------------------------------------------------------------------------------------------------------------- 对

BZOJ 2242 SDOI2011 计算器 快速幂+扩展欧几里得+BSGS

题目大意:--简洁明了自己看 第一问快速幂 第二问扩展欧几里得 第三问BSGS 顺便一开始没看到p是质数0.0 去弄了EXBSGS的模板0.0 懒得改了 #include<cmath> #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #define M 1001001 using namespace std; typedef long long l

BZOJ 2242 [SDOI2011]计算器 BSGS+快速幂+EXGCD

题意:链接 方法: BSGS+快速幂+EXGCD 解析: BSGS- 题解同上.. 代码: #include <cmath> #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define MOD 140345 using namespace std; typedef long long ll; ll t,k,ans; ll y,z,p;

【快速幂】【扩展欧几里德】【BSGS】【SDOI 2011】【bzoj 2242】计算器

2242: [SDOI2011]计算器 Time Limit: 10 Sec Memory Limit: 512 MB Submit: 2077 Solved: 812 Description 你被要求设计一个计算器完成以下三项任务: 1.给定y,z,p,计算Y^Z Mod P 的值: 2.给定y,z,p,计算满足xy≡ Z ( mod P )的最小非负整数: 3.给定y,z,p,计算满足Y^x ≡ Z ( mod P)的最小非负整数. Input 输入包含多组数据. 第一行包含两个正整数T,K

【BZOJ】2242: [SDOI2011]计算器

http://www.lydsy.com/JudgeOnline/problem.php?id=2242 题意:(前两个问略...)第三个问是,求$a^x \equiv b \pmod{p}$,它们范围都是$10^9$哒= = #include <bits/stdc++.h> using namespace std; typedef long long ll; int mpow(ll a, ll b, ll p) { ll r=1; a%=p; while(b) { if(b&1) r

BZOJ:2242: [SDOI2011]计算器

题解:BSGS 问题:map空间 BSGS判无解 a%p!=0 0与最小非负整数 有区别 函数传参类型转换int->long long long long ->int; 费马小定理充分必要 性? #include<iostream> #include<cstdio> #include<cstring> #include<map> #include<cmath> using namespace std; typedef long lon