摘要: study from: http://www.cnblogs.com/chinhhh/p/7965433.html https://www.luogu.org/problemnew/show/P3384 阅读全文
posted @ 2018-08-31 21:25 congmingyige 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1. hdu1698 http://acm.hdu.edu.cn/showproblem.php?pid=1698 2. https://www.luogu.org/problemnew/show/P3372 不用取余 3. https://www.luogu.org/problemnew/show 阅读全文
posted @ 2018-08-31 19:37 congmingyige 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 粗略版,待将来修改。 https://pan.baidu.com/s/1PYw_ghBe43ry82YtOcKZ7w 全排列 目录 全排列性质... 1 全排列求法... 2 Way1(按顺序):... 2 1-Another1(按顺序):... 4 1-Another2(不按顺序):... 6 W 阅读全文
posted @ 2018-08-31 17:53 congmingyige 阅读(521) 评论(0) 推荐(0) 编辑
摘要: study from: https://www.cnblogs.com/flashhu/p/9480669.html 3.斜率dp study from:http://www.cnblogs.com/MashiroSky/p/6009685.html 或单减 https://www.luogu.or 阅读全文
posted @ 2018-08-31 16:52 congmingyige 阅读(138) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.org/problemnew/show/P3628 斜率dp+二分 https://blog.csdn.net/litble/article/details/76917097 待写 阅读全文
posted @ 2018-08-31 16:52 congmingyige 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 可不可以有另外的划分小矩阵的方法? A*B=C A/B分成n*m个矩阵 可看成一个多元方程。 Ci,k = Ai,j * Bjk 每一个Ci,k看成方程的一个未知数 每一个小式子:对于A或B同一列/行的可以放在一起,只用一次乘法。如(Ai,1+Ai,2+Ai,3)*(B1,j+B2,j) 留作之后思 阅读全文
posted @ 2018-08-31 08:48 congmingyige 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 #include 11 #include 12 #include 13 #include 14 #include 15 #include 16... 阅读全文
posted @ 2018-08-31 08:07 congmingyige 阅读(438) 评论(0) 推荐(0) 编辑
摘要: INT_MAX:2^31-1 2147483647 RAND_MAX:2^15-1 32768 阅读全文
posted @ 2018-08-31 07:57 congmingyige 阅读(113) 评论(0) 推荐(0) 编辑
摘要: etc. minv=1e-10 or less x>y : x>y-minv x<y : x<y+minv x=y : fabs(x-y)<minv 阅读全文
posted @ 2018-08-31 07:32 congmingyige 阅读(230) 评论(0) 推荐(0) 编辑