上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 32 下一页
摘要: http://codeforces.com/contest/699 ALaunch of Collider 题意:n个球,每个球向左或右,速度都为1米每秒,问第一次碰撞的时间,否则输出-1 贪心最短时间一定在RL中,R右边一定有L,L左边一定有R 1 // #pragma comment(linke 阅读全文
posted @ 2016-07-22 20:12 yyblues 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 2016 Multi-University Training Contest 2 5734 Acperience 官方题解 直接队友代码 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <sstrea 阅读全文
posted @ 2016-07-22 16:15 yyblues 阅读(165) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/search.php?field=problem&key=2016+Multi-University+Training+Contest+1&source=1&searchmode=source 1001 Abandoned country 题意:n个数 m 阅读全文
posted @ 2016-07-20 16:38 yyblues 阅读(549) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/search.php?field=problem&key=BestCoder+2nd+Anniversary&source=1&searchmode=source A 取最小的非零数,再相加 1 // #pragma comment(linker, "/S 阅读全文
posted @ 2016-07-17 23:08 yyblues 阅读(235) 评论(0) 推荐(0) 编辑
摘要: B - Mysterious Light 题意:从一个正三角形边上一点出发,遇到边和已走过的边则反弹,问最终路径长度 思路:GCD 数据爆long long 1 #pragma comment(linker, "/STACK:102c000000,102c000000") 2 #include <i 阅读全文
posted @ 2016-07-17 09:17 yyblues 阅读(300) 评论(0) 推荐(0) 编辑
摘要: A - Pineapple Incident 1 #pragma comment(linker, "/STACK:102c000000,102c000000") 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 #inc 阅读全文
posted @ 2016-07-16 10:41 yyblues 阅读(351) 评论(0) 推荐(0) 编辑
摘要: A - Fashion in Berland 水 1 // #pragma comment(linker, "/STACK:102c000000,102c000000") 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 阅读全文
posted @ 2016-07-14 21:02 yyblues 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 题意:每次可以选择n种操作,玩m次,问谁必胜。c堆,每堆数量告诉。 题意:sg—NIM系列博弈模板题 把每堆看成一个点,求该点的sg值,异或每堆sg值。 将多维转化成一维,性质与原始NIM博弈一样。 阅读全文
posted @ 2016-07-11 20:32 yyblues 阅读(245) 评论(0) 推荐(0) 编辑
摘要: A 脑筋急转弯 1 // #pragma comment(linker, "/STACK:1024000000,1024000000") 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 #include <sstrea 阅读全文
posted @ 2016-07-09 15:39 yyblues 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 二分答案 下等:a-x 中等:b-x 上等:c 1 // #pragma comment(linker, "/STACK:1024000000,1024000000") 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 阅读全文
posted @ 2016-07-07 12:24 yyblues 阅读(162) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 32 下一页