会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
文文殿下's Blog
Be just the one you wanna be.
博客园
首页
新随笔
联系
管理
订阅
2019年6月19日
【文文殿下】扩展中国剩余定理(板子)
摘要: ```cpp bool CRT(int a1,int m1,int a2,int m2,int &a,int &m) { int x,y; int d = exgcd(m1,m2,x,y); int z = a2-a1; if(z%d) return 0; x = (int)(1LL*x*(z/d)%(m2/d)); m=int(1LL*m1*m2/d); a = int((1LL*...
阅读全文
posted @ 2019-06-19 00:02 文文殿下
阅读(335)
评论(0)
推荐(0)
编辑
公告