摘要:
证明代码: 证明结果: 阅读全文
摘要:
证明链接:http://blog.csdn.net/acmore_xiong/article/details/47694909 模板: 一、求解不定方程 1.青蛙的约会 题意: 本题其实是在求不定方程的解。根据题设条件,我们其实是需要找到一个整数p,使方程 (x+p·m)%L=(y+p·n)%L 有 阅读全文
摘要:
最大公约数: 递归代码: gcb的两个重要结论: 最小公倍数: 阅读全文
摘要:
调用方法: 测试效果: 注:可以看到1 2 3 4这个结果被跳过了。 正确调用方法: 阅读全文
摘要:
OJ链接:http://lx.lanqiao.cn/problem.page?gpid=T443 模拟题,但是我走入了误区,导致开始出错。 代码: 阅读全文
摘要:
oj链接:http://lx.lanqiao.cn/problem.page?gpid=T125 水题 阅读全文
摘要:
OJ链接:http://lx.lanqiao.cn/problem.page?gpid=T126 如果能理解其内在的含义,可以得40分保命: 保命代码: #include <stdio.h> #include <memory.h> #include <math.h> #include <string 阅读全文
摘要:
1.元素序列的排列与组合 组合序列: 递归图解: 全排列: 将组合后的序列进行全排列,就得到了排列序列: 排列序列: 测试代码: #include <stdio.h> #include <memory.h> #include <math.h> #include <string.h> #include 阅读全文
摘要:
高斯消元法 模板: 完整代码: #include <stdio.h> #include <memory.h> #include <math.h> #include <string.h> #include <string> #include <vector> #include <set> #inclu 阅读全文
摘要:
模板: 1.负数的进制 #include <stdio.h> #include <memory.h> #include <math.h> #include <string.h> #include <string> #include <vector> #include <set> #include < 阅读全文