Description

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

\(1.\)给定\(y,z,p\),计算\(y^{z}\;mod\;P\)的值;

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

\(3.\)给定\(y,z,p\),计算满足\(y^{x} \equiv z\;mod\;P\)的最小非负整数。

Input

输入包含多组数据。

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

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

Output

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

Sample Input

3 1

2 1 3

2 2 3

2 3 3

Sample Output

2

1

2

Hint

对于\(100\%\)的数据,\(1 \le y,z,P \le 10^{9}\),\(P\)为质数,\(1 \le T \le 10\)。

数论裸题合集:快速幂,扩展欧几里得,bsgs。

#include<cmath>
#include<cstdio>
#include<cstdlib>
#include<map>
using namespace std; typedef long long ll;
int kind; ll ans; inline ll qsm(ll a,ll b,ll c)
{
ll ret = 1;
for (;b;b >>= 1,(a *= a) %= c)
if (b & 1) (ret *= a) %= c;
return ret;
} inline int gcd(int a,int b)
{
if (!b) return a;
return gcd(b,a%b);
} inline ll bsgs(int a,int b,int c)
{
int i,t = 1;
for (i = 0;i<=50;i++)
{
if (t == b) return i;
t = (ll)t*(ll)a% c;
}
int tmp = 1,k = 1;
t = 1;
while (tmp = gcd(a,c),tmp!=1)
{
if (b % tmp) return -1;
c /= tmp; k++; b /= tmp;
t = (ll)t*(ll)a/tmp%c;
}
int m = (int)sqrt(c+0.5);
map <int,int> hash; hash[1] = 0;
int f = 1;
for (i = 1;i<m;i++)
{
f = (ll)f * (ll)a % c;
hash[f] = i;
}
f = (ll)f*(ll)a%c;
b = qsm(t,c-2,c)*(ll)b%c;
int mod = qsm(f,c-2,c);
for (i = 0;i<m;i++)
{
if (hash.count(b)) return i*m+hash[b]+k-1;
b = (ll)b * (ll)mod % c;
}
return -1;
} int main()
{
freopen("2242.in","r",stdin);
freopen("2242.out","w",stdout);
int T; scanf("%d %d",&T,&kind);
while (T--)
{
int y,z,p;
scanf("%d %d %d",&y,&z,&p);
if (kind == 1) ans = qsm(y,z,p);
else if (kind == 2)
{
y %= p,z %= p;
int d = gcd(y,p);
if (z % d != 0) ans = -1;
else
{
y /= d, p /= d,z /= d;
ans = z*qsm(y,p-2,p)%p;
}
}
else ans = bsgs(y,z,p);
if (ans >= 0) printf("%lld\n",ans);
else printf("Orz, I cannot find x!\n");
}
fclose(stdin); fclose(stdout);
return 0;
}

BZOJ 2242 计算器的更多相关文章

  1. bzoj 2242: [SDOI2011]计算器 BSGS+快速幂+扩展欧几里德

    2242: [SDOI2011]计算器 Time Limit: 10 Sec  Memory Limit: 512 MB[Submit][Status][Discuss] Description 你被 ...

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

    没什么好说的... --------------------------------------------------------------------- #include<cstdio&g ...

  3. BZOJ 2242: [SDOI2011]计算器 [快速幂 BSGS]

    2242: [SDOI2011]计算器 题意:求\(a^b \mod p,\ ax \equiv b \mod p,\ a^x \equiv b \mod p\),p是质数 这种裸题我竟然WA了好多次 ...

  4. 【BZOJ 2242】[SDOI2011]计算器

    Description 你被要求设计一个计算器完成以下三项任务: 1.给定y,z,p,计算Y^Z Mod P 的值: 2.给定y,z,p,计算满足xy≡ Z ( mod P )的最小非负整数: 3.给 ...

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

    Description 你被要求设计一个计算器完成以下三项任务: 1.给定y,z,p,计算Y^Z Mod P 的值: 2.给定y,z,p,计算满足xy≡ Z ( mod P )的最小非负整数: 3.给 ...

  6. [BZOJ 2242] [SDOI 2011] 计算器

    Description 你被要求设计一个计算器完成以下三项任务: 给定 \(y,z,p\),计算 \(y^z \bmod p\) 的值: 给定 \(y,z,p\),计算满足 \(xy≡ z \pmod ...

  7. BZOJ.2242.[SDOI2011]计算器(扩展欧几里得 BSGS)

    同余方程都不会写了..还一直爆int /* 2.关于同余方程ax ≡b(mod p),可以用Exgcd做,但注意到p为质数,y一定有逆元 首先a%p=0时 仅当b=0时有解:然后有x ≡b*a^-1( ...

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

    [题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=2242 [题目大意] 给出T和K 对于K=1,计算 Y^Z Mod P 的值 对于K=2 ...

  9. bzoj 2242 [SDOI2011]计算器——BSGS模板

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2242 第一道BSGS! 咳咳,我到底改了些什么?…… 感觉和自己的第一版写的差不多……可能是 ...

随机推荐

  1. 第三篇——第二部分——第五文 配置SQL Server镜像——域环境SQL Server镜像日常维护

    本文接上面两篇搭建镜像的文章: 第三篇--第二部分--第三文 配置SQL Server镜像--域环境:http://blog.csdn.net/dba_huangzj/article/details/ ...

  2. leetcode 题解 || Swap Nodes in Pairs 问题

    problem: Given a linked list, swap every two adjacent nodes and return its head. For example, Given ...

  3. [TypeScript] Loading Compiled TypeScript Files in Browser with SystemJS

    TypeScript outputs JavaScript, but what are you supposed to do with it? This lesson shows how to tak ...

  4. GitHub具体教程

    GitHub具体教程 Table of Contents 1 Git具体教程 1.1 Git简单介绍 1.1.1 Git是何方神圣? 1.1.2 重要的术语 1.1.3 索引 1.2 Git安装 1. ...

  5. (转载)MyEclipse github

           最近Git火得如日中天,而且速度体验和团队模式都很不错.手头正好有个学生实训项目,时间紧任务重,而且学校内网管理太紧,所以就想借助于Internet的分布式开发,因此想到了Github. ...

  6. 常用JDBC连接字符串

    1.MySQL Class.forName( " org.gjt.mm.mysql.Driver " ); Connection conn = DriverManager.getC ...

  7. 使用 git 进行项目管理(只管理代码,不管理项目配置)

    使用Git进行项目管理 1. 从服务器pull项目,本地还原工程 从服务器拉取仓库及分支 git clone git@github.com/helloWorld.git git branch -a g ...

  8. WPF学习之资源-Resources

    WPF学习之资源-Resources WPF通过资源来保存一些可以被重复利用的样式,对象定义以及一些传统的资源如二进制数据,图片等等,而在其支持上也更能体现出这些资源定义的优越性.比如通过Resour ...

  9. spring参数类型异常输出(二), SpringMvc参数类型转换错误输出(二)

    spring参数类型异常输出(二), SpringMvc参数类型转换错误输出(二) >>>>>>>>>>>>>>&g ...

  10. [转载]Access to the path '' is denied.解决方案

    原文地址:Access to the path '' is denied.解决方案作者:趴着墙等红杏 ccess to the path '路径' is denied.我在网上找了很多资料,最后终于解 ...