zoukankan      html  css  js  c++  java
  • poj 2385 Apple Catching 基础dp

    Apple Catching
     

    Description

    It is a little known fact that cows love apples. Farmer John has two apple trees (which are conveniently numbered 1 and 2) in his field, each full of apples. Bessie cannot reach the apples when they are on the tree, so she must wait for them to fall. However, she must catch them in the air since the apples bruise when they hit the ground (and no one wants to eat bruised apples). Bessie is a quick eater, so an apple she does catch is eaten in just a few seconds. 

    Each minute, one of the two apple trees drops an apple. Bessie, having much practice, can catch an apple if she is standing under a tree from which one falls. While Bessie can walk between the two trees quickly (in much less than a minute), she can stand under only one tree at any time. Moreover, cows do not get a lot of exercise, so she is not willing to walk back and forth between the trees endlessly (and thus misses some apples). 

    Apples fall (one each minute) for T (1 <= T <= 1,000) minutes. Bessie is willing to walk back and forth at most W (1 <= W <= 30) times. Given which tree will drop an apple each minute, determine the maximum number of apples which Bessie can catch. Bessie starts at tree 1.

    Input

    * Line 1: Two space separated integers: T and W 

    * Lines 2..T+1: 1 or 2: the tree that will drop an apple each minute.

    Output

    * Line 1: The maximum number of apples Bessie can catch without walking more than W times.

    Sample Input

    7 2
    2
    1
    1
    2
    2
    1
    1

    Sample Output

    6

    Hint

    INPUT DETAILS: 

    Seven apples fall - one from tree 2, then two in a row from tree 1, then two in a row from tree 2, then two in a row from tree 1. Bessie is willing to walk from one tree to the other twice. 

    OUTPUT DETAILS: 

    Bessie can catch six apples by staying under tree 1 until the first two have dropped, then moving to tree 2 for the next two, then returning back to tree 1 for the final two.
    思路:dp[i][j][k]表示前i个来回最多j次在k(1,2)的那棵树上
    #include<iostream>
    #include<cstdio>
    #include<cmath>
    #include<string>
    #include<queue>
    #include<algorithm>
    #include<stack>
    #include<cstring>
    #include<vector>
    #include<list>
    #include<set>
    #include<map>
    using namespace std;
    #define ll long long
    #define mod 1000000007
    #define inf 999999999
    int scan()
    {
        int res = 0 , ch ;
        while( !( ( ch = getchar() ) >= '0' && ch <= '9' ) )
        {
            if( ch == EOF )  return 1 << 30 ;
        }
        res = ch - '0' ;
        while( ( ch = getchar() ) >= '0' && ch <= '9' )
            res = res * 10 + ( ch - '0' ) ;
        return res ;
    }
    int dp[1010][35][3];
    int a[1010];
    int main()
    {
        int x,y,z,i,t;
        while(~scanf("%d%d",&x,&y))
        {
            for(i=1;i<=x;i++)
            scanf("%d",&a[i]);
            for(i=0;i<1010;i++)
            for(t=0;t<32;t++)
            for(int j=0;j<3;j++)
            dp[i][t][j]=-inf;
            dp[0][0][1]=0;
            //dp[0][1][2]=0;
            memset(dp,0,sizeof(dp));
            for(i=1;i<=x;i++)
            {
                for(t=0;t<=y;t++)
                for(int j=1;j<=2;j++)
                {
                    dp[i][t][j]=max(dp[i][t][j],dp[i-1][t][j]);
                    if(dp[i-1][t][j]!=-inf)
                    {
                        if(a[i]!=j&&t!=y)
                        dp[i][t+1][a[i]]=max(dp[i][t+1][a[i]],dp[i-1][t][j]+1);
                        else if(a[i]==j)
                        dp[i][t][a[i]]=max(dp[i][t][a[i]],dp[i-1][t][j]+1);
                    }
                }
            }
            int maxx=0;
            for(i=0;i<=y;i++)
            for(t=1;t<=2;t++)
            maxx=max(maxx,dp[x][i][t]);
            printf("%d
    ",maxx);
        }
        return 0;
    }
    View Code
  • 相关阅读:
    用kettle做ETL时设置mysql连接参数使数据写入速度加快
    infobright社区版rpm包
    mysql在大数据量下性能调优相关参数
    greenplum给某个用户赋予整个schema下所有表的权限
    Linux挂载大于2T的磁盘硬盘
    Centos 系统swap(虚拟内存)管理
    域内
    随便记录一些东西
    有关终端的一些tips
    精悍的指令
  • 原文地址:https://www.cnblogs.com/jhz033/p/5365528.html
Copyright © 2011-2022 走看看