码迷,mamicode.com
首页 > Windows程序 > 详细

leetcode486 Predict the Winner

时间:2017-09-08 13:26:37      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:logs   ++   for   color   col   bool   amp   cto   span   

思路:

博弈。

实现:

 1 class Solution 
 2 {
 3 public:
 4     
 5     bool PredictTheWinner(vector<int>& nums) 
 6     {
 7         int dp[21][21];
 8         int n = nums.size();
 9         for (int i = 0; i < n; i++) dp[i][i] = nums[i];
10         for (int i = n - 1; i >= 0; i--)
11         {
12             for (int j = i + 1; j < n; j++)
13             {
14                 dp[i][j] = max(nums[i] - dp[i + 1][j], nums[j] - dp[i][j - 1]);
15             }
16         }
17         return dp[0][n - 1] >= 0;
18     }
19 };

 

leetcode486 Predict the Winner

标签:logs   ++   for   color   col   bool   amp   cto   span   

原文地址:http://www.cnblogs.com/wangyiming/p/7493835.html

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