数学基础
三级头不怕通
这个作者很懒,什么都没留下…
展开
-
费马小定理
费马小定理 p!| a 说明(p,a)=1p是质数说明((p-1)!, p)原创 2017-10-17 10:07:11 · 166 阅读 · 0 评论 -
codeforces959D. Mahmoud and Ehab and another array construction task 因数的递归
D. Mahmoud and Ehab and another array construction tasktime limit per test3 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputMahmoud has an array a co...原创 2018-07-19 16:47:33 · 270 阅读 · 0 评论 -
转的别人的线性基学习
https://blog.sengxian.com/algorithms/linear-basisvoid cal() { for (int i = 0; i < n; ++i) for (int j = MAX_BASE; j >= 0; --j) if (a[i] >> j & 1) { ...转载 2018-07-20 17:53:36 · 122 阅读 · 0 评论 -
凸多边形重心与判断点是否在凸多边形内
求凸多边形重心:https://wenku.baidu.com/view/6c113283ec3a87c24028c426.html (有错)一句话概括:固定一点 枚举另两点(连续的)构成三角形 求出这个三角形重心 求平均(加权面积)代码:Point Zhongxin(Point *a,int n){ Point ans=Point(0,0);double ss=0; ...原创 2018-08-13 21:55:42 · 1239 阅读 · 0 评论 -
b的模mod逆元 = b ^ (m-2)
http://blog.csdn.net/mys_c_k/article/details/78935830除法取模逆元,扩展欧几里得,费马小定理[数学]三、费马小定理假如p是质数,且gcd(a,p)=1,那么 a(p-1)≡1(mod p)如果求解 a / b mod m 求 b 的模m乘法逆元,若b , m互质则 k* b mod m = 1 且 b ^ (m-1) m...转载 2018-09-04 20:07:57 · 1212 阅读 · 0 评论 -
【CF908E】New Year and Entity Enumeration
https://www.cnblogs.com/CQzhangyu/p/8227408.htmlhttp://www.mamicode.com/info-detail-2146477.html题意:给定M=2m−1M=2m−1,我们称一个集合S是好的,当且仅当它满足:1.∀a∈S,a xor M∈S∀a∈S,a xor M∈S,2.∀a,b∈S,a and b∈S∀a,b∈S,a and...转载 2018-09-05 11:19:34 · 239 阅读 · 0 评论 -
codeforces 1010 C. Border Bézout's identity
C. Bordertime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputAstronaut Natasha arrived on Mars. She knows that the Martians are very ...原创 2019-03-01 06:29:05 · 207 阅读 · 0 评论 -
Codeforces Round #511 (Div. 1) C. Region Separation(dp + 数论)
转自:https://www.cnblogs.com/zjp-shadow/p/9773420.html这个代码太6了#include <bits/stdc++.h>#define For(i, l, r) for(register int i = (l), i##end = (int)(r); i <= i##end; ++i)#define Fordown(i...转载 2019-03-07 12:06:28 · 359 阅读 · 0 评论