码迷,mamicode.com
首页 >  
搜索关键字:hopscotch    ( 92个结果
POJ 3258 River Hopscotch(二分·最小距离最大)
题意  一条河两岸之间有n个石头  求取走m个石头后  使得两个石头间距离的最小值最大 感觉关键是理解题意  简单的二分  二分最小距离  看要取走多少个(cnt)石头  cnt #include #include using namespace std; const int N = 50005; int p[N], l, n, m; bool ok(int k) { int ...
分类:其他好文   时间:2015-03-09 12:54:15    阅读次数:162
POJ 3258 River Hopscotch(二分 跳河)
Language: Default River Hopscotch Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 7990   Accepted: 3438 Description Every year the cows hold an event fea...
分类:其他好文   时间:2015-03-09 09:26:37    阅读次数:251
POJ 3258 River Hopscotch (二分)
经典的二分题...
分类:其他好文   时间:2015-02-06 13:20:23    阅读次数:187
POJ 3258 River Hopscotch (二分)
题目地址:POJ 3258 水题。二分距离,判断是否可行。需要注意的是最后一个,因为最后一个是没法移除的,所以还要倒着判断一下。 代码如下: #include #include #include #include #include #include #include #include #include using namespace std; #define LL __in...
分类:其他好文   时间:2015-01-23 20:06:47    阅读次数:140
poj3258--River Hopscotch(二分)
River Hopscotch Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 7668   Accepted: 3302 Description Every year the cows hold an event featuring a peculiar vers...
分类:其他好文   时间:2015-01-23 11:18:02    阅读次数:140
poj 3050 Hopscotch 【DFS】
Hopscotch Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2156   Accepted: 1548 Description The cows play the child's game of hopscotch in a non-traditiona...
分类:其他好文   时间:2014-12-06 14:07:12    阅读次数:180
poj 3050 Hopscotch【搜索、去重】
点击打开题目 Hopscotch Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2126   Accepted: 1524 Description The cows play the child's game of hopscotch in a no...
分类:其他好文   时间:2014-11-26 14:31:08    阅读次数:204
POJ3050 Hopscotch 【DFS】
Hopscotch Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2113   Accepted: 1514 Description The cows play the child's game of hopscotch in a non-traditiona...
分类:其他好文   时间:2014-11-11 08:13:18    阅读次数:227
POJ-3050 Hopscotch(穷竭搜索,DFS,回溯法)
穷竭搜索,DFS,回溯法...
分类:其他好文   时间:2014-11-10 13:52:09    阅读次数:154
【POJ3258】River Hopscotch 二分答案,贪心check
题意:第一行knm,有n+2个石头在数轴上(k是第n+2个石头离第一个的距离),要删掉m个,使两两间距的最小值最大,并求这个值。 题解:排序一下,然后扫一遍贪心决定删哪些。 #include #include #include #define N 50500 #define inf 0x3f3f3f3f using namespace std; int dist[N],n,m; int ...
分类:其他好文   时间:2014-11-06 21:56:50    阅读次数:211
92条   上一页 1 ... 6 7 8 9 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!