摘要: 题目:https://nanti.jisuanke.com/t/20701 题解:http://blog.csdn.net/wjhshuai/article/details/79546381 阅读全文
posted @ 2018-03-20 20:30 INER 阅读(123) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/bat603/article/details/1456141 阅读全文
posted @ 2018-03-13 20:05 INER 阅读(102) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/wangqing_12345/article/details/51867247 阅读全文
posted @ 2018-03-13 20:04 INER 阅读(508) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/zmj1582188592/article/details/52249294 阅读全文
posted @ 2018-03-13 15:52 INER 阅读(146) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include using namespace std; #define maxn 120005 #define maxm 10005 struct edge { int u;int v;int cost; }es[maxn]; bool cmp(const edge& e1... 阅读全文
posted @ 2018-03-08 23:53 INER 阅读(92) 评论(0) 推荐(0) 编辑
摘要: A 阅读全文
posted @ 2018-03-06 19:47 INER 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; #define MAX 1000005 #define MIN 100005 long long ans = 阅读全文
posted @ 2018-03-06 17:02 INER 阅读(140) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/a479778594/article/details/70157121 阅读全文
posted @ 2018-02-21 12:05 INER 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 注意参数类型应该正确 阅读全文
posted @ 2018-02-07 20:55 INER 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 消除尾一 下面的代码把一个整数的二进制表示的最右边的连续的1全部变成0如果最后一位是0,则原数字保持不变。 如果采用代码中的测试数据,应该输出:00000000000000000000000001100111 000000000000000000000000011000000000000000000 阅读全文
posted @ 2018-01-31 14:15 INER 阅读(83) 评论(0) 推荐(0) 编辑