Minimax-486. Predict the Winner

Source: Internet
Author: User

Given an array of scores that is non-negative integers. Player 1 Picks one of the numbers from either end of the array followed by the Player 2 and then player 1 and so on. Each time a player picks a number, and that number is not being available for the next player. This continues until all the scores has been chosen. The player with the maximum score wins.

Given an array of scores, predict whether player 1 is the winner. You can assume all player plays to maximize his score.

Example 1:




Hence, Player 1 'll never is the winner and you need to return False.

Example 2:

Input: [1, 5, 233, 7]output:trueexplanation:player 1 first chooses 1. Then player 2 has to choose between 5 and 7. No matter which number player 2 choose, Player 1 can choose 233.
Finally, Player 1 has the more score (234) than Player 2 (a), so you need to return True representing Player1 can win.

Note:

    1. 1 <= length of the array <= 20.
    2. Any scores in the given array is non-negative integers and would not exceed 10,000,000.
    3. If the scores of both players is equal, then player 1 is still the winner.

classSolution { Public:    BOOLPredictthewinner (vector<int>&nums) {        intn =nums.size (); Vector<vector<int>> DP (N, vector<int> (n,0));  for(inti =0; I < n; ++i) Dp[i][i] =Nums[i];  for(intLen =1; Len < n; ++Len) {             for(inti =0, j = Len; J < N; ++i, + +j) {Dp[i][j]= Max (Nums[i]-dp[i +1][J], Nums[j]-dp[i][j-1]); }        }        returndp[0][n-1] >=0; }};

Minimax-486. Predict the Winner

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.