码迷,mamicode.com
首页 >  
搜索关键字:hopscotch    ( 92个结果
POJ3258-River Hopscotch-二分答案
一条河里有一串石头,给出石头间的间距,让你去掉m个石头,使最短间距最大。 二分答案,对于每一种mid,判断要不要删除这块石头。然后逼近答案。 #include <cstdio> #include <cstring> #include <algorithm> using namespace std;
分类:其他好文   时间:2016-01-31 21:44:28    阅读次数:215
Hopscotch(POJ 3050 DFS)
HopscotchTime Limit:1000MSMemory Limit:65536KTotal Submissions:2845Accepted:1995DescriptionThe cows play the child's game of hopscotch in a non-tradit...
分类:其他好文   时间:2016-01-22 17:00:28    阅读次数:147
River Hopscotch(二分最大化最小值)
River HopscotchTime Limit:2000MSMemory Limit:65536KTotal Submissions:9923Accepted:4252DescriptionEvery year the cows hold an event featuring a peculia...
分类:其他好文   时间:2015-12-28 11:42:19    阅读次数:183
Divide and Conquer:River Hopscotch(POJ 3258)
去掉石头 题目大意:一群牛在河上的石头上跳来跳去,现在问你如何通过去掉M个石头,使得牛跳过石头的最短距离变得最大? 这一题比较经典,分治法的经典,二分法可以很方便处理这个问题,我们只要明白比较函数这个东西就可以了。 模板: ...
分类:其他好文   时间:2015-12-21 01:56:14    阅读次数:130
POJ 3050 Hopscotch
用stack保存数字,set判重。dfs一遍就好。(或者编码成int,快排+unique#include#include#include#include#include#include#include#include#include#include#includeusing namespace st...
分类:其他好文   时间:2015-10-18 16:47:04    阅读次数:141
bzoj1650:跳石子
1650: [Usaco2006 Dec]River Hopscotch 跳石子Time Limit: 5 SecMemory Limit: 64 MBSubmit: 345Solved: 230[Submit][Status][Discuss]DescriptionEvery year the c...
分类:其他好文   时间:2015-09-17 22:57:32    阅读次数:224
poj 3258 River Hopscotch(二分搜索)
DescriptionEvery year the cows hold an event featuring a peculiar version of hopscotch that involves carefully jumping from rock to rock in a river. T...
分类:其他好文   时间:2015-09-02 23:16:48    阅读次数:256
POJ 3258 River Hopscotch(二分求最小中的最大)
Description Every year the cows hold an event featuring a peculiar version of hopscotch that involves carefully jumping from rock to rock in a river. The excitement takes place on a long, straight ...
分类:其他好文   时间:2015-08-27 13:34:17    阅读次数:177
【深搜+set使用学习】POJ3050-Hopscotch
【题目大意】给出一个5*5的方格,求出从任意一点出发走6步组成的不同序列数。【思路】dfs的水题,当作set使用方法的初次学习。每次从任意一点出发进行一次dfs,将序列加入set,最后输出set.size()即可。 1 #include 2 #include 3 #include 4 using n...
分类:其他好文   时间:2015-08-18 11:34:19    阅读次数:125
POJ 3050 Hopscotch (穷竭搜索)
题目链接:http://poj.org/problem?id=3050 题面: Hopscotch Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2563   Accepted: 1823 Description The cows play the...
分类:其他好文   时间:2015-08-09 12:46:19    阅读次数:146
92条   上一页 1 ... 4 5 6 7 8 ... 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!