zoukankan      html  css  js  c++  java
  • BZOJ 2101: [Usaco2010 Dec]Treasure Chest 藏宝箱( dp )

    dp( l , r ) = sum( l , r ) - min( dp( l + 1 , r ) , dp( l , r - 1 ) )

    被卡空间....我们可以发现 l > r 是无意义的 , 所以可以省下一半的空间

    --------------------------------------------------------------------------------

    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<iostream>
     
    #define rep( i , n ) for( int i = 0 ; i < n ; ++i )
    #define clr( x , c ) memset( x , c , sizeof( x ) )
    #define Rep( i , n ) for( int i = 1 ; i <= n ; ++i )
     
    using namespace std;
     
    const int maxn = 5000 + 10;
     
    int d[ maxn * maxn >> 1 ];
    int sum[ maxn ];
    int n;
     
    #define f( l , r ) ( r + ( ( ( n << 1 ) - l + 2 )  * ( l - 1 ) >> 1 ) )
     
    int dp( int l , int r ) {
    int &ans = d[ f( l , r ) ];
    if( ans != -1 ) return ans;
    return ans = sum[ r ] - sum[ l - 1 ] - min( dp( l + 1 , r ) , dp( l , r - 1 ) );
    }
     
    int main() {
    freopen( "test.in" , "r" , stdin );
    cin >> n;
    sum[ 0 ] = 0;
    clr( d , -1 );
    Rep( i , n ) {
    int v;
    scanf( "%d" , &v );
    d[ f( i , i ) ] = v;
    sum[ i ] = sum[ i - 1 ] + v;
    }
    cout << dp( 1 , n ) << " ";
    return 0;
    }

      

    -------------------------------------------------------------------------------- 

    2101: [Usaco2010 Dec]Treasure Chest 藏宝箱

    Time Limit: 10 Sec  Memory Limit: 64 MB
    Submit: 374  Solved: 174
    [Submit][Status][Discuss]

    Description

    Bessie and Bonnie have found a treasure chest full of marvelous gold coins! Being cows, though, they can't just walk into a store and buy stuff, so instead they decide to have some fun with the coins. The N (1 <= N <= 5,000) coins, each with some value C_i (1 <= C_i <= 5,000) are placed in a straight line. Bessie and Bonnie take turns, and for each cow's turn, she takes exactly one coin off of either the left end or the right end of the line. The game ends when there are no coins left. Bessie and Bonnie are each trying to get as much wealth as possible for themselves. Bessie goes first. Help her figure out the maximum value she can win, assuming that both cows play optimally. Consider a game in which four coins are lined up with these values: 30 25 10 35 Consider this game sequence: Bessie Bonnie New Coin Player Side CoinValue Total Total Line Bessie Right 35 35 0 30 25 10 Bonnie Left 30 35 30 25 10 Bessie Left 25 60 30 10 Bonnie Right 10 60 40 -- This is the best game Bessie can play.

      贝西和邦妮找到了一个藏宝箱,里面都是金币!但是身为两头牛,她们不能到商店里把金币换成好吃的东西,于是她们只能用这些金币来玩游戏了。
        藏宝箱里一共有N枚金币,第i枚金币的价值是Ci。贝西和邦妮把金币排成一条直线,她们轮流取金币,看谁取到的钱最多。贝西先取,每次只能取一枚金币,而且只能选择取直线两头的金币,不能取走中间的金币。当所有金币取完之后,游戏就结束了。
        贝西和邦妮都是非常聪明的,她们会采用最好的办法让自己取到的金币最多。请帮助贝西计算一下,她能拿到多少钱?

    Input

    * Line 1: A single integer: N * Lines 2..N+1: Line i+1 contains a single integer: C_i

    第一行:单个整数N,表示硬币的数量,1<=N≤5000
    第二行到第N+1行:第i+l行有一个整数Ci,代表第i块硬币的价值,1≤Ci≤5000

    Output

    * Line 1: A single integer, which is the greatest total value Bessie can win if both cows play optimally.

      第一行:单个整数,表示如果双方都按最优策略玩游戏,先手可以拿到的最大价值

    Sample Input

    4
    30
    25
    10
    35

    Sample Output

    60

    HINT

      (贝西最好的取法是先取35,然后邦妮会取30,贝西再取25,邦妮最后取10)

    Source

  • 相关阅读:
    ubuntu root 登录没有声音(waiting for sound system to respond)
    android openVG source prj
    http://source.android.com/ android官网(下载源码及sdk)
    8个优秀的Android开源游戏引擎
    2010開放原始碼創新應用開發大賽 (有很好的源码)
    GIT和repo使用方法:下载内核 android源码包
    Real6410系列教程 android
    [转]Protel布局文件转化为Allegro placement文件
    ubuntu网卡设置
    ubuntu 下安装java6的源
  • 原文地址:https://www.cnblogs.com/JSZX11556/p/4592378.html
Copyright © 2011-2022 走看看