上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页
摘要: 证明代码: 证明结果: 阅读全文
posted @ 2018-02-21 09:02 TQCAI 阅读(1843) 评论(0) 推荐(1) 编辑
摘要: 证明链接:http://blog.csdn.net/acmore_xiong/article/details/47694909 模板: 一、求解不定方程 1.青蛙的约会 题意: 本题其实是在求不定方程的解。根据题设条件,我们其实是需要找到一个整数p,使方程 (x+p·m)%L=(y+p·n)%L 有 阅读全文
posted @ 2018-02-20 17:28 TQCAI 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 最大公约数: 递归代码: gcb的两个重要结论: 最小公倍数: 阅读全文
posted @ 2018-02-20 16:38 TQCAI 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 调用方法: 测试效果: 注:可以看到1 2 3 4这个结果被跳过了。 正确调用方法: 阅读全文
posted @ 2018-02-20 16:03 TQCAI 阅读(127) 评论(0) 推荐(0) 编辑
摘要: OJ链接:http://lx.lanqiao.cn/problem.page?gpid=T443 模拟题,但是我走入了误区,导致开始出错。 代码: 阅读全文
posted @ 2018-02-20 15:54 TQCAI 阅读(115) 评论(0) 推荐(0) 编辑
摘要: oj链接:http://lx.lanqiao.cn/problem.page?gpid=T125 水题 阅读全文
posted @ 2018-02-20 12:13 TQCAI 阅读(422) 评论(0) 推荐(0) 编辑
摘要: OJ链接:http://lx.lanqiao.cn/problem.page?gpid=T126 如果能理解其内在的含义,可以得40分保命: 保命代码: #include <stdio.h> #include <memory.h> #include <math.h> #include <string 阅读全文
posted @ 2018-02-20 11:08 TQCAI 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1.元素序列的排列与组合 组合序列: 递归图解: 全排列: 将组合后的序列进行全排列,就得到了排列序列: 排列序列: 测试代码: #include <stdio.h> #include <memory.h> #include <math.h> #include <string.h> #include 阅读全文
posted @ 2018-02-20 09:28 TQCAI 阅读(424) 评论(0) 推荐(1) 编辑
摘要: 高斯消元法 模板: 完整代码: #include <stdio.h> #include <memory.h> #include <math.h> #include <string.h> #include <string> #include <vector> #include <set> #inclu 阅读全文
posted @ 2018-02-19 21:48 TQCAI 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 模板: 1.负数的进制 #include <stdio.h> #include <memory.h> #include <math.h> #include <string.h> #include <string> #include <vector> #include <set> #include < 阅读全文
posted @ 2018-02-19 17:02 TQCAI 阅读(149) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页