zoukankan      html  css  js  c++  java
  • [LUOGU2964] [USACO09NOV]硬币的游戏A Coin Game

    题目描述

    Farmer John's cows like to play coin games so FJ has invented with a new two-player coin game called Xoinc for them.

    Initially a stack of N (5 <= N <= 2,000) coins sits on the ground; coin i from the top has integer value C_i (1 <= C_i <= 100,000).

    The first player starts the game by taking the top one or two coins (C_1 and maybe C_2) from the stack. If the first player takes just the top coin, the second player may take the following one or two coins in the next turn. If the first player takes two coins then the second player may take the top one, two, three or four coins from the stack. In each turn, the current player must take at least one coin and at most two times the amount of coins last taken by the opposing player. The game is over when there are no more coins to take.

    Afterwards, they can use the value of the coins they have taken from the stack to buy treats from FJ, so naturally, their purpose in the game is to maximize the total value of the coins they take. Assuming the second player plays optimally to maximize his own winnings, what is the highest total value that the first player can have when the game is over?

    MEMORY LIMIT: 20 MB

    农夫约翰的奶牛喜欢玩硬币游戏.

    初始时,一个有N枚硬币的堆栈放在地上,从堆顶数起的第i枚硬币的币值 为Ci

    开始玩游戏时,第一个玩家可以从堆顶拿走一枚或两枚硬币.如果第一个玩家只拿走堆顶的 一枚硬币,那么第二个玩家可以拿走随后的一枚或两枚硬币.如果第一个玩家拿走两枚硬币,则第二个玩家可以拿走1,2,3,或4枚硬币.在每一轮中,当前的玩家至少拿走一枚硬币,至多拿 走对手上一次所拿硬币数量的两倍.当没有硬币可拿时,游戏结束.

    两个玩家都希望拿到最多钱数的硬币.请问,当游戏结束时,第一个玩家最多能拿多少钱 呢?

    输入输出格式

    输入格式:

    * Line 1: A single integer: N

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

    输出格式:

    * Line 1: A single integer representing the maximum value that can be made by the first player.

    输入输出样例

    输入样例#1: 
    5 
    1 
    3 
    1 
    7 
    2 
    
    输出样例#1: 
    9 
    

    说明

    There are five coins with the values 1, 3, 1, 7, and 2.

    The first player starts by taking a single coin (value 1). The opponent takes one coin as well (value 3). The first player takes two more coins (values 1 and 7 -- total 9). The second player gets the leftover coin (value 2-- total 5).


    设f[i][j]为还剩下i个硬币,上次取走j个硬币的最大值。

    显然f[i][j] = max(sum[i] - f[i-k][k]);

    这样是O(N^3)的;

    我们考虑f[i][j]与f[i][j-1]相差在哪了。

    就是2 * j和2 * j - 1.

    于是让f[i][j]=f[i][j-1],然后判断2*j和2*j-1更新就行了。


    // luogu-judger-enable-o2
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    using namespace std;
    inline int read() {
        int res=0;char ch=getchar();
        while(!isdigit(ch)) ch=getchar();
        while(isdigit(ch)) res=(res<<3)+(res<<1)+(ch^48),ch=getchar();
        return res;
    }
    #define reg register
    
    int n; 
    int a[2005], qzh[2005];
    int f[2005][2005];
    
    int main()
    {
        n = read();
        for (reg int i = 1 ; i <= n ; i ++) a[n - i + 1] = read();
        for (reg int i = 1 ; i <= n ; i ++) qzh[i] = qzh[i-1] + a[i];
        for (reg int i = 1 ; i <= n ; i ++)
        {
            for (reg int j = 1 ; j <= n ; j ++)
            {
                f[i][j] = f[i][j-1];
                int k = (j << 1) - 1;
                if (k <= i) f[i][j] = max(f[i][j], qzh[i] - f[i-k][k]);
                k++;
                if (k <= i) f[i][j] = max(f[i][j], qzh[i] - f[i-k][k]);
            }
        }
        printf("%d
    ", f[n][1]);
        return 0;
    }
  • 相关阅读:
    html的下拉框的几个基本使用方法
    中国大概能用的NTPserver地址
    index_ss hint 使用的运行计划变化对照
    sizeof,终极无惑(上)
    Android源代码学习之六——ActivityManager框架解析
    RelativeLayout经常使用属性介绍
    sharepoint 2013 个人网站公共母板页路径地址
    Binder机制1---Binder原理介绍
    Linux makefile 教程 很具体,且易懂
    虚拟短信
  • 原文地址:https://www.cnblogs.com/BriMon/p/9486650.html
Copyright © 2011-2022 走看看