poj -- 1042 Gone Fishing(枚举+贪心)
题意:
John现有h个小时的空闲时间,他打算去钓鱼。钓鱼的地方共有n个湖,所有的湖沿着一条单向路顺序排列(John每在一个湖钓完鱼后,他只能走到下一个湖继续钓),John必须从1号湖开始钓起,但是他可以在任何一个湖结束他此次钓鱼的行程。此题以5分钟作为单位时间,John在每个湖中每5分钟钓的鱼数随时间的增长而线性递减。每个湖中头5分钟可以钓到的鱼数用fi表示,每个湖中相邻5分钟钓鱼数的减少量用di表示,John从任意一个湖走到它下一个湖的时间用ti表示。求一种方案,使得John在有限的h小时中可以钓到尽可能多的鱼。
注意:
1)每在一个湖钓完鱼后,他只能走到下一个湖,不能回头。
2)所求的方案可能有多种,但是题目中要求的方案需要满足下面条件:如果存在多种方案,那么选取在第一个湖(钓鱼)停留时间最长的一种,或者在第二个湖·····第N个湖停留时间最长的一种方案。(If multiple plans exist, choose the one that spends as long as possible at lake 1, even if no fish are expected to be caught in some intervals. If there is still a tie, choose the one that spends as long as possible at lake 2, and so on. )
分析:
1)可以枚举john在哪些湖钓鱼的所有情况,然后,总时间去掉路上花费的时间。剩余的时间,每次选举一个能钓到最多的鱼的湖钓鱼。
2)剩余时间大于0,但是,所有湖能钓到的鱼的个数都为0,此时需要把剩余时间全部加在第一个湖的停留时间中。
3)当钓到的鱼的数量更新时,停留时间列表必须更新。
4)当钓到的鱼的数量与当前所掉的鱼的数量相等时,停留时间列表可能需要更新。
代码如下:
#include <iostream>
#define maxn 30 using namespace std; int num, hour,ans,anst;
int f[maxn],d[maxn],t[maxn],ft[maxn];
int res[maxn] , temp[maxn];
void solve()
{
t[0] = 0; //统计不同的停留方案所需要的停留时间
for(int i = 1 ; i < num; i ++) t[i] += t[i-1]; //以5分钟为计量单位的总时间
int h = hour*12;
int pos;
ans = -1 ; for(int k = 0 ; k < num ; k ++)
{ anst = 0; //ft数组存的是f数组的副本,因为在计算过程中,需要改变ft数组的值;
//temp数组存储的是当前情况下,在每个湖停留的时间的列表
for(int i = 0 ; i < num ; i ++) temp[i] = 0 ,ft[i] = f[i]; //去掉路上的时间,之后钓鱼的总时间
int th = h - t[k]; while(th > 0)
{
pos = 0;
for(int j = 0 ; j <= k ; j ++)
{//找到当前时间,能钓到最大量的鱼,所在的湖
if(ft[j] > ft[pos])
pos = j;
}
//等于号不能去掉。如果在pos位置所能钓到的鱼的数量等于0,
//那么这一个时间单位将没有必要放在pos所在的湖(可能更新到第一个湖上)
if(ft[pos] <= 0) break;
anst += ft[pos];//更新鱼数量
ft[pos] -= d[pos];//更新所能钓到的鱼的数量
temp[pos] ++;//更新pos位置停留时间信息 th --;
}
//剩余时间全部加在第一个湖上
if(th > 0) temp[0] += th; if(anst > ans)
{//更新结果值和停留时间列表
ans = anst;
for(int i = 0 ; i < num ; i ++) res[i] = temp[i];
}
else if(anst == ans)
{//判断并更新停留时间列表
bool flag = true; for(int i = 0 ; i < num ; i ++)
if(temp[i] > res[i])
{
flag = false;
break;
}else if(temp[i] < res[i]) break;
if(!flag)
for(int i = 0 ; i < num ; i ++) res[i] = temp[i];
}
}
}
void print()
{//输出结果
for(int i = 0 ; i < num - 1 ; i ++) cout<<res[i]*5<<", ";
cout<<res[num-1]*5<<endl; cout<<"Number of fish expected: "<<ans<<endl;
cout<<endl;
}
int main()
{
while(cin>>num,num)
{
cin>>hour;
for(int i = 0 ; i < num ; i ++) cin>>f[i] ;
for(int i = 0 ; i < num ; i ++) cin>>d[i] ;
for(int i = 1 ; i < num ; i ++) cin>>t[i] ; solve();
print();
}
return 0;
}
poj -- 1042 Gone Fishing(枚举+贪心)的更多相关文章
- POJ 1042 Gone Fishing (贪心)(刘汝佳黑书)
Gone Fishing Time Limit: 2000MS Memory Limit: 32768K Total Submissions: 30281 Accepted: 9124 Des ...
- POJ 1042 Gone Fishing#贪心
(- ̄▽ ̄)-* #include<iostream> #include<cstdio> #include<cstring> using namespace std ...
- POJ 1042 Gone Fishing
题意:一个人要在n个湖中钓鱼,湖之间的路径是单向的,只能走1->2->3->...->n这一条线路,告诉你每个湖中一开始能钓到鱼的初始值,和每钓5分钟就减少的数量,以及湖之间的 ...
- POJ #1042 Gone Fishing - WA by a DP solution. TODO
I used DP instead of Greedy. But got WA on PoJ, though it passed all web-searched cases. Maybe I hav ...
- POJ 1042 Gone Fishing( DP )
题意:小明打算做一个h((1 <= h <= 16))个小时钓鱼旅行.发现这里有n(2 <= n <= 25)个湖,而且所有的湖都在一条路的旁边.小明打算从第1个湖开始钓起,每 ...
- D. Diverse Garland Codeforces Round #535 (Div. 3) 暴力枚举+贪心
D. Diverse Garland time limit per test 1 second memory limit per test 256 megabytes input standard i ...
- 51nod1625(枚举&贪心)
题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1625 题意:中文题诶- 思路:枚举+贪心 一开始写的行和列同时 ...
- 枚举+贪心 HDOJ 4932 Miaomiao's Geometry
题目传送门 /* 题意:有n个点,用相同的线段去覆盖,当点在线段的端点才行,还有线段之间不相交 枚举+贪心:有坑点是两个点在同时一条线段的两个端点上,枚举两点之间的距离或者距离一半,尽量往左边放,否则 ...
- Poj/OpenJudge 1042 Gone Fishing
1.链接地址: http://bailian.openjudge.cn/practice/1042/ http://poj.org/problem?id=1042 2.题目: Gone Fishing ...
随机推荐
- 2016-11-02: boost::enable_shared_from_this
使用场景 当类对象被shared_ptr管理时,需要在类自己定义的函数中把当前对象作为参数传递给其他函数时,必须传递一个shared_ptr,否则就不能保持shared_ptr管理这个类对象的语义.因 ...
- 安卓工程 Installation error:INSTALL_PARSE_FAILED_MANIFEST_MALFORMED的解决办法
解决办法:把包名首字母改成小写就好了.
- swift 动画合集
本例参照objective-c的动画合集进行swift的转换,objective-c地址参照地址https://github.com/yixiangboy/IOSAnimationDemo 1.基础动 ...
- Android IOS WebRTC 音视频开发总结(八十二)-- VP8对VP9,质量还是码率?
本文主要介绍VP9(我们翻译和整理的,译者:weizhenwei,校验:blacker),最早发表在[编风网] 支持原创,转载必须注明出处,欢迎关注我的微信公众号blacker(微信ID:blacke ...
- spring 事务问题
今天碰到一个奇怪的问题,在service中执行方法,调用了两次dao,前面是save,在save后面抛错,竟然没回滚,难道不是一个事务? 后来网上查资料,发现spring的事务回滚必须是运行时异常Ru ...
- Kafka安装
一.下载kafka: http://kafka.apache.org/downloads 二.解压 tar -zxvf kafka_2.10-0.10.0.1.tgz 三.kafka需要用到zooke ...
- Runtime Reconfiguration
https://coreos.com/etcd/docs/latest/runtime-configuration.html Runtime Reconfiguration 运行时重新配置 etcd ...
- C# DateTime.ToString的坑
当需要将时间类型转换为字符串类型时,一般直接使用datetime.ToString()方法即可 1.直接使用ToString(),不带任何参数,代码如下 static void Main(string ...
- java正则随笔
一.string校验 要求字符串只能输入数字,字母大小写和‘@‘’‘.’‘_’三个特殊字符 public static boolean check1(String str){ String patte ...
- python学习心得第二章
python基础 1.关于python编码的问题. python的编码现在主要是两种版本python2.7和python3.5 python2.7默认的是ascii码进行编译,我们可以采用 # -*- ...