B2242 [SDOI2011]计算器
这个题就是把三个数论基础合在了一起,算是一道比较全面的题.
1的时候就是快速幂
2的时候是exgcd求逆元,特殊的,只有两数互质才有逆元.
3就是bsgs啦,还是不太熟
题干:
Description
你被要求设计一个计算器完成以下三项任务:
、给定y,z,p,计算Y^Z Mod P 的值;
、给定y,z,p,计算满足xy≡ Z ( mod P )的最小非负整数;
、给定y,z,p,计算满足Y^x ≡ Z ( mod P)的最小非负整数。
Input 输入包含多组数据。
第一行包含两个正整数T,K分别表示数据组数和询问类型(对于一个测试点内的所有数据,询问类型相同)。
以下行每行包含三个正整数y,z,p,描述一个询问。
Output
对于每个询问,输出一行答案。对于询问类型2和3,如果不存在满足条件的,则输出“Orz, I cannot find x!”,注意逗号与“I”之间有一个空格。
代码:
#include<iostream>
#include<cstdio>
#include<cmath>
#include<ctime>
#include<queue>
#include<algorithm>
#include<map>
#include<cstring>
using namespace std;
#define duke(i,a,n) for(register int i = a;i <= n;i++)
#define lv(i,a,n) for(register int i = a;i >= n;i--)
#define clean(a) memset(a,0,sizeof(a))
#define int long long
const int INF = << ;
typedef long long ll;
typedef double db;
template <class T>
void read(T &x)
{
char c;
bool op = ;
while(c = getchar(), c < '' || c > '')
if(c == '-') op = ;
x = c - '';
while(c = getchar(), c >= '' && c <= '')
x = x * + c - '';
if(op) x = -x;
}
template <class T>
void write(T x)
{
if(x < ) putchar('-'), x = -x;
if(x >= ) write(x / );
putchar('' + x % );
}
int t,k;
map <int,int> mp;
void work1(int y,int z,int p)
{
int tot = ;
while(z)
{
if(z & )
{
tot *= y;
tot %= p;
}
y *= y;
y %= p;
z >>= ;
}
printf("%lld\n",tot);
}
int exgcd(int a,int b,int &x,int &y)
{
if(b == )
{
x = ;
y = ;
return a;
}
int t = exgcd(b,a % b,y,x);
y -= (a / b * x);
return t;
}
void work2(int y,int z,int p)
{
int x,f;
// z %= p;
int d = exgcd(y,p,x,f);
if(d != )
{
printf("Orz, I cannot find x!\n");
return;
}
x = (x % p + p) % p;
x = (x * z) % p;
/*if(now == p)
printf("Orz, I cannot find x!");
else*/
printf("%lld\n",x);
}
int qpow(int a,int b,int p)
{
int tot = ;
while(b)
{
if(b & )
{
tot *= a;
tot %= p;
}
a *= a;
a %= p;
b >>= ;
}
return tot;
}
void work3(int a,int b,int p)
{
if(a % p == )
{
printf("Orz, I cannot find x!\n");
return;
}
mp.clear();
int m = ceil(sqrt(p));
int now = b % p,ans;
mp[now] = ;
duke(i,,m)
{
now = (now * a) % p;
mp[now] = i;
}
int t = qpow(a,m,p);
now = ;
int ok = ;
duke(i,,m)
{
now = (now * t) % p;
if(mp[now])
{
ans = i * m - mp[now];
printf("%lld\n",(ans % p + p) % p);
ok = ;
break;
}
}
if(ok == )
printf("Orz, I cannot find x!\n");
}
main()
{
read(t);read(k);
//cout<<t<<endl;
duke(i,,t)
{
int y,z,p;
read(y);read(z);read(p);
if(k == )
{
work1(y,z,p);
}
else if(k == )
{
work2(y,z,p);
}
else if(k == )
{
work3(y,z,p);
}
//cout<<i<<" "<<t<<endl;
}
return ;
}
B2242 [SDOI2011]计算器的更多相关文章
- bzoj 2242: [SDOI2011]计算器 BSGS+快速幂+扩展欧几里德
2242: [SDOI2011]计算器 Time Limit: 10 Sec Memory Limit: 512 MB[Submit][Status][Discuss] Description 你被 ...
- BZOJ 2242: [SDOI2011]计算器( 快速幂 + 扩展欧几里德 + BSGS )
没什么好说的... --------------------------------------------------------------------- #include<cstdio&g ...
- BZOJ 2242: [SDOI2011]计算器 [快速幂 BSGS]
2242: [SDOI2011]计算器 题意:求\(a^b \mod p,\ ax \equiv b \mod p,\ a^x \equiv b \mod p\),p是质数 这种裸题我竟然WA了好多次 ...
- BZOJ_2242_[SDOI2011]计算器_快速幂+扩展GCD+BSGS
BZOJ_2242_[SDOI2011]计算器_快速幂+扩展GCD+BSGS 题意: 你被要求设计一个计算器完成以下三项任务: 1.给定y,z,p,计算Y^Z Mod P 的值: 2.给定y,z,p, ...
- 【bzoj2242】[SDOI2011]计算器
2242: [SDOI2011]计算器 Time Limit: 10 Sec Memory Limit: 512 MBSubmit: 3207 Solved: 1258[Submit][Statu ...
- BZOJ2242 [SDOI2011]计算器 【BSGS】
2242: [SDOI2011]计算器 Time Limit: 10 Sec Memory Limit: 512 MB Submit: 4741 Solved: 1796 [Submit][Sta ...
- 【BZOJ2242】[SDOI2011]计算器 BSGS
[BZOJ2242][SDOI2011]计算器 Description 你被要求设计一个计算器完成以下三项任务: 1.给定y,z,p,计算Y^Z Mod P 的值: 2.给定y,z,p,计算满足xy≡ ...
- 【bzoj2242】: [SDOI2011]计算器 数论-快速幂-扩展欧几里得-BSGS
[bzoj2242]: [SDOI2011]计算器 1.快速幂 2.扩展欧几里得(费马小定理) 3.BSGS /* http://www.cnblogs.com/karl07/ */ #include ...
- 洛谷 P2485 [SDOI2011]计算器 解题报告
P2485 [SDOI2011]计算器 题目描述 你被要求设计一个计算器完成以下三项任务: 1.给定y.z.p,计算y^z mod p 的值: 2.给定y.z.p,计算满足xy ≡z(mod p)的最 ...
随机推荐
- ThinkPHP---thinkphp会话支持和文件载入
[一]会话控制 会话支持一般指cookie和session,在ThinkPHP里为了方便开发,封装了cookie和session方法. (1)session方法 在函数库封装了session方法 se ...
- java中随机生成字符串的方法(三种)
org.apache.commons.lang(2.6): 链接:https://pan.baidu.com/s/1k_oeA5AjSt6evoR7zT8gpQ 提取码:yhl5 1.生成的字符串每个 ...
- Django - 自定义filter
自定义filter 自定义filter时,使用装饰器fileter 在html中,使用传参方式为: 参数1|函数名:参数2 并且函数和参数之间,不能有空格,如果有空格,会报错. filter和simp ...
- css去掉div的滚动条
懒得讲原理了,直接贴代码: css部分: .slide-box { margin-top: 200px; display: -webkit-box; overflow-x: scroll; overf ...
- cout 按进制数出
头文件: #include<iostream> #include<iomanip> //setbase() #include<bitset> //bitset< ...
- World Cup(The 2016 ACM-ICPC Asia China-Final Contest dfs搜索)
题目: Here is World Cup again, the top 32 teams come together to fight for the World Champion. The tea ...
- Ztree加载完成默认选中根节点右侧生成表格
需求:页面加载完成之后,默认选中ztree的根节点,并执行其点击方法,右侧生成表格: 效果:如下图所示: 思路:在节点点击事件clickNode方法中根据节点的部门code查询这个部门下的所有员工,并 ...
- python 元组不变 列表可变
python 元组不变 列表可变 1, --元组,注意要有逗号: [1] --列表 竟然才开始写python blog:
- autoconfig
實例:假設我們有個資料夾為d:\tmp和e:\tmp ,而我們只要將d:\tmp中有異動的檔案複製到e:\tmp下的話,用法如下xcopy d:\tmp\. e:\tmp\ /D /S /Y實例:如果 ...
- MVC中动作方法三个特性以及解决同名方法冲突
一.Http请求谓词特性(解决方法同名冲突问题的一个方案) 关于Http谓词特点:经常使用,如果不加上该特性,默认动作方法接收所有谓词的请求一般开发中都会加上谓词,限定请求谓词类型 二.NonActi ...