poj1042 Gone Fishing

题目来源:http://poj.org/problem?id=1042

题目大意:一个人在一个打算在编号1~n的湖里钓鱼,钓鱼是单向走的,不能往回走。给你n个湖,每个湖初始鱼的数量pi每次每个湖钓鱼后鱼的减少量di,第i个湖到第i+1湖的距离时间ti(单位是5min。。。),这个人可以在任何湖停止钓鱼求如何钓鱼才能才能在h小时内钓鱼量最多输出在每个湖钓鱼的时间。相同钓鱼量情况下,输出湖编号小的用时多的时间。

题目思路:用贪心+枚举即可。在枚举的大循环下,每一种枚举情况采用贪心计算出最优的钓鱼情况。

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;

int ans[30][30],f[30],d[30],t[30];
int main()
{
    int h,n;
    cin>>n;
    while(true)
    {
        if(n==0)    break;

        cin>>h;
        h*=12;
        memset(ans,0,sizeof(ans));
        memset(f,0,sizeof(f));
        memset(t,0,sizeof(t));
        memset(d,0,sizeof(d));

        for(int i=1;i<=n;++i)
        {
            scanf("%d",&f[i]);
        }
        for(int i=1;i<=n;++i)
        {
            scanf("%d",&d[i]);
        }
        for(int i=1;i<n;++i)
        {
            scanf("%d",&t[i]);
        }

        int ht,ft[30];
        for(int ed=1;ed<=n;++ed)//枚举从第一个湖开始走
        {
            memset(ft,0,sizeof(ft));
            for(int i=1;i<=ed;++i)
            {
                ft[i]=f[i];
            }//ft作为f的临时记录
            ht=h;//记录剩余时间
            for(int i=1;i<ed;++i)
            {
                ht-=t[i];//每一种枚举情况下除去走路花费的时间
            }
            //剩余的时间来钓鱼
            int k,emp=1;//emp代表当前的湖
            while(ht>0&&emp<=ed)//时间用完或湖空为止
            {
                k=1;
                for(int j=emp;j<=ed;++j)
                {
                    if(ft[j]>ft[k])
                    {
                        k=j;
                    }
                }//找出最优的湖
          //用ans[池塘编号][0]表示收获量,其余元素表示需要的时间
                ans[ed][0]+=ft[k];//此次收获+ft[k]
                ++ans[ed][k];//记录在k湖花费了1单位时间
                --ht;//时间消耗1单位
                ft[k]-=d[k];//鱼的总量减少
                ft[k]=ft[k]>0?ft[k]:0;
                for(int j=emp;j<=ed;++j)
                {
                    if(ft[j]==0)    ++emp;//若有湖空了,则进入下一个湖
                    else            break;
                }//检查是否ed前的湖都已空
            }
            if(ht>0)    ans[ed][1]+=ht;//若尝试了所有的湖后时间有剩余
        }

        int a=1;
        for(int i=2;i<=n;++i)
        {
            if(ans[i][0]>ans[a][0])    a=i;
        }//找出收益最大的方案

        for(int i=1;i<=n;++i)
        {
            cout<<ans[a][i]*5;//输出所有的池塘所待的时间
            if(i!=n)    cout<<", ";
        }
        cout<<endl;
        cout<<"Number of fish expected: "<<ans[a][0]<<endl;

        cin>>n;
        if(n!=0)    cout<<endl;
    }
    return 0;
}
时间: 2024-10-05 21:47:00

poj1042 Gone Fishing的相关文章

POJ-1042 Gone Fishing (贪心法求最佳钓鱼方案

Gone Fishing Time Limit: 2000MS   Memory Limit: 32768K Total Submissions: 28075   Accepted: 8371 Description John is going on a fishing trip. He has h hours available (1 <= h <= 16), and there are n lakes in the area (2 <= n <= 25) all reachab

黑书贪心例题之钓鱼 poj1042:Gone Fishing

总时间限制: 2000ms 内存限制: 65536kB 描述 John is going on a fishing trip. He has h hours available (1 <= h <= 16), and there are n lakes in the area (2 <= n <= 25) all reachable along a single, one-way road. John starts at lake 1, but he can finish at a

[ZOJ 1015]Fishing Net(MCS弦图的判定)

Description In a highly modernized fishing village, inhabitants there make a living on fishery. Their major tools, fishing nets, are produced and fixed by computer. After catching fishes each time, together with plenty of fishes, they will bring back

uva 757 Gone Fishing (贪心)

uva 757 Gone Fishing John is going on a fishing trip. He has h hours available ( ), and there are n lakes in the area ( ) all reachable along a single, one-way road. John starts at lake 1, but he can finish at any lake he wants. He can only travel fr

POJ 1042 Gone Fishing (贪心)(刘汝佳黑书)

Gone Fishing Time Limit: 2000MS   Memory Limit: 32768K Total Submissions: 30281   Accepted: 9124 Description John is going on a fishing trip. He has h hours available (1 <= h <= 16), and there are n lakes in the area (2 <= n <= 25) all reachab

贪心算法 -- gone fishing

poj 1042 gone fishing 题目要求: 由有n个湖, 按照顺序排列,一个人从第一个湖向最后一个湖行进(方向只能从湖0到湖n-1),途中可以在湖中钓鱼.在每个湖中钓鱼时,开始的5分钟内可以钓到 f[i] 条,之后每5分钟钓到的鱼数目递减 d[i] ,且每两个相邻的湖的距离 t[i] 给出(t[i] 表示 由第 i 个湖向第 i + 1个湖行进在路上花费5分钟的倍数的时间, 即如果t[3] = 4,则表示从第三个湖向第四个湖行进需要花费20分钟). 现给定总时间h 小时,求出在每个湖

ZOJ 1015 Fishing Net(判断弦图)

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=15 题意:给定一个图.判断是不是弦图? 思路:(1)神马是弦图?对于一个无向图,若该图的任意一个长度大于3的环中存在一条边连接这个环上不相邻的两点,则此图称作弦图. (2)什么是团?团是原图的一个子图,子图就是包含了原图的某些点,那么就要包含这些点之间的边.并且团不是一般的子图而是一个完全子图,就是这个子图的任意两个顶点之间都有边.下面的ABCD就是原图的一个团. (

ZOJ 1015 Fishing Net(弦图判定)

In a highly modernized fishing village, inhabitants there make a living on fishery. Their major tools, fishing nets, are produced and fixed by computer. After catching fishes each time, together with plenty of fishes, they will bring back the shabby

uva757 - Gone Fishing(贪心)

题目:uva757 - Gone Fishing(贪心) 题目大意:有N个湖泊只有一条通路将这些湖泊相连.每个湖泊都会给最开始5分钟间隔内可以调到的鱼(f),然后给每过5分钟减少的鱼的数量(d),如果当前的鱼少于等于减少的数量,说明在下个5分钟没有鱼.还有过每条道路的所要耗费的时间(N-1),时间都是以5分钟为单位的.渔者可以在任意一个湖泊钓鱼,但是起始位置是在湖泊1.问H小时后,渔者怎样合理的在每个湖泊分配时间,可以得到的鱼最多.如果得到最多的鱼的方式有多种,则取在前面的湖泊耗时最久的那一种.