zoukankan      html  css  js  c++  java
  • Coins in a Line II

    There are n coins with different value in a line. Two players take turns to take one or two coins from left side until there are no more coins left. The player who take the coins with the most value wins.

    Could you please decide the first player will win or lose?

    Example

    Given values array A = [1,2,2], return true.

    Given A = [1,2,4], return false.

    解题思路:

    题目要求用到动态规划,采用逆向思维, 不论对于哪一位选手, 假设他正站在第i个硬币的位置上,那么他在这个位置开始,他能领先另一位选手的硬币数量为 Gap[i]

    那么Gap[i]= Coin[i]-Gap[i+1] //如果只拿一个

    或者Gap[i]=Coin[i]+Coin[i+1]-Gap[i+2] 如果只拿一个

    从最后一个硬币的位置开始推

    Gap[last]=Gap[last]; //最后只能拿一个;

    Gap[last-1]=coin[last-1]+coin[last]; //把最后两个都拿了

    从倒数第三个开始递减循环,直到第一个硬币的位置, 因为第一个硬币无论如何都是第一个选手拿,那只要Gap[0]>0 那么就能获胜

    代码:

     public boolean firstWillWin(int[] values) {
            // write your code here
            int length = values.length;
            if(length<=2) return true;
            int[] largestPossibleSum = new int[length];
            // for the last turn
            largestPossibleSum[length-1]=values[length-1];//if there is one last coin avaliable for this player
            largestPossibleSum[length-2]=values[length-2]+values[length-1];// if there are only two coins available for this player
            
            //for each the coins from length-3 to 0, find each possible max sum he could get at each index
            for(int i= length-3;i>=0;i--){
                largestPossibleSum[i]=Math.max(values[i]-largestPossibleSum[i+1],
                                      values[i]+values[i+1]-largestPossibleSum[i+2]);
            }
            
            return(largestPossibleSum[0]>0);
        }
  • 相关阅读:
    python--将jenkins配置的任务导出到Excel
    python--终端工具之subprocess
    jquery-触底加载无限滚动
    python-比较字典value的最大值
    Linux-查看cpu核数和个数、查看内存的命令
    python读取本地正在运行的docker容器
    关于get 和post 方法的比较
    git相关的一篇不错的文章
    Java 函数调用是传值还是传引用? 从字节码角度来看看!
    Unity3D移动平台动态读取外部文件全解析
  • 原文地址:https://www.cnblogs.com/midan/p/4709689.html
Copyright © 2011-2022 走看看