摘要: C. Wilbur and Pointstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputWilbur is playing with a set... 阅读全文
posted @ 2015-11-20 00:53 lmlyzxiao 阅读(214) 评论(0) 推荐(0) 编辑
摘要: B. Wilbur and Arraytime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputWilbur the pig is tinkering w... 阅读全文
posted @ 2015-11-20 00:51 lmlyzxiao 阅读(204) 评论(0) 推荐(0) 编辑
摘要: A. Wilbur and Swimming Pooltime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputAfter making bad dives... 阅读全文
posted @ 2015-11-20 00:49 lmlyzxiao 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 9 using namespace std; 10 11 const int M = 10005; 12... 阅读全文
posted @ 2015-11-12 15:35 lmlyzxiao 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 3478题目意思是Farey序列是由一系列不能约分的分数a/b(0 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 10 using namespace std;11 12 c... 阅读全文
posted @ 2015-11-11 15:39 lmlyzxiao 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 用到一个结论:如果p是素数,则p有φ(p-1)个原根。然后就是直接求φ函数的值了 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 10 using na... 阅读全文
posted @ 2015-11-11 15:17 lmlyzxiao 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 #define pi 3.14159265311 using namespac... 阅读全文
posted @ 2015-11-09 00:25 lmlyzxiao 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 两道题目类似,自己写的挫一直不对,后来祭出了kuangbin模板(枚举变元求最小解),慢慢练吧。。。贴出1753的代码 3185直接改改初始化就行了 1 #include 2 #include 3 #include 4 #include 5 #include 6 #includ... 阅读全文
posted @ 2015-11-08 12:49 lmlyzxiao 阅读(160) 评论(0) 推荐(1) 编辑
摘要: 先贴一下大牛博客里面的高斯消元专题http://blog.csdn.net/qiqijianglu/article/details/7945197然后这个题构造矩阵有点意思,比较有想法,构造出来就直接套模板了 1 #include 2 #include 3 #include 4 #includ... 阅读全文
posted @ 2015-11-07 01:50 lmlyzxiao 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 终于会一点高斯消元了,认真学还是学的进去啊。。。。。。搞明白解异或方程的原理,然后构造出矩阵就好做了。模板题 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include ... 阅读全文
posted @ 2015-11-07 01:28 lmlyzxiao 阅读(79) 评论(0) 推荐(0) 编辑