|洛谷|模拟|P1086 花生采摘

http://www.luogu.org/problem/show?pid=1086

由于必须采摘当前最大植株,所以这道题水了很多,当如果摘了当前点返回不够时间的话,那这个点就不能摘。

#include
#include
#include
#include
#define ms(i,j) memset(i,j, sizeof i);
using namespace std;
struct fruit
{
       int x;
       int y;
       int v;
}fr[405];
bool cmp(fruit const &a, fruit const &b)
{
     return b.v


你可能感兴趣的:(模拟,洛谷)