码迷,mamicode.com
首页 > 其他好文 > 详细

877. Stone Game

时间:2021-04-10 13:23:44      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:points   hat   mos   i++   ted   oar   ons   which   row   

Alex and Lee play a game with piles of stones.  There are an even number of piles arranged in a row, and each pile has a positive integer number of stones piles[i].

The objective of the game is to end with the most stones.  The total number of stones is odd, so there are no ties.

Alex and Lee take turns, with Alex starting first.  Each turn, a player takes the entire pile of stones from either the beginning or the end of the row.  This continues until there are no more piles left, at which point the person with the most stones wins.

Assuming Alex and Lee play optimally, return True if and only if Alex wins the game.

 

Example 1:

Input: piles = [5,3,4,5]
Output: true
Explanation: 
Alex starts first, and can only take the first 5 or the last 5.
Say he takes the first 5, so that the row becomes [3, 4, 5].
If Lee takes 3, then the board is [4, 5], and Alex takes 5 to win with 10 points.
If Lee takes the last 5, then the board is [3, 4], and Alex takes 4 to win with 9 points.
This demonstrated that taking the first 5 was a winning move for Alex, so we return true.

 1 class Solution {
 2     // dp[i][j] means the biggest number of stones you can get more than opponent picking piles in piles[i] ~ piles[j].
 3     // You can first pick piles[i] or piles[j].
 4 
 5     // If you pick piles[i], your result will be piles[i] - dp[i + 1][j]
 6     // If you pick piles[j], your result will be piles[j] - dp[i][j - 1]
 7     // So we get:
 8     // dp[i][j] = max(piles[i] - dp[i + 1][j], piles[j] - dp[i][j - 1])
 9     // We start from smaller subarray and then we use that to calculate bigger subarray.
10     public boolean stoneGame(int[] p) {
11         int n = p.length;
12         int[][] dp  = new int[n][n];
13         for (int i = 0; i < n; i++) {
14             dp[i][i] = p[i];
15         }
16         for (int d = 1; d < n; d++) {
17             for (int i = 0; i + d < n; i++) {
18                 int j = d + i;
19                 dp[i][j] = Math.max(p[i] - dp[i + 1][j], p[j] - dp[i][j - 1]);
20             }
21         }
22         return dp[0][n - 1] > 0;
23     }
24 }

 

877. Stone Game

标签:points   hat   mos   i++   ted   oar   ons   which   row   

原文地址:https://www.cnblogs.com/beiyeqingteng/p/14639326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!