-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path1140-stone-game-ii.rb
66 lines (51 loc) · 1.91 KB
/
1140-stone-game-ii.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# frozen_string_literal: true
# 1140. Stone Game II
# https://leetcode.com/problems/stone-game-ii/
# Medium
=begin
Alice and Bob continue their games with piles of stones. There are a 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.
Alice and Bob take turns, with Alice starting first. Initially, M = 1.
On each player's turn, that player can take all the stones in the first X remaining piles, where 1 <= X <= 2M. Then, we set M = max(M, X).
The game continues until all the stones have been taken.
Assuming Alice and Bob play optimally, return the maximum number of stones Alice can get.
Example 1:
Input: piles = [2,7,9,4,4]
Output: 10
Explanation: If Alice takes one pile at the beginning, Bob takes two piles, then Alice takes 2 piles again. Alice can get 2 + 4 + 4 = 10 piles in total. If Alice takes two piles at the beginning, then Bob can take all three piles left. In this case, Alice get 2 + 7 = 9 piles in total. So we return 10 since it's larger.
Example 2:
Input: piles = [1,2,3,4,5,100]
Output: 104
Constraints:
1 <= piles.length <= 100
1 <= piles[i] <= 104
=end
# @param {Integer[]} piles
# @return {Integer}
def min(a, b)
a < b ? a : b
end
def max(a, b)
a > b ? a : b
end
def stone_game_ii(piles)
ps = piles.reduce([0]) { |arr, num| arr << arr[-1] + num }
z = ps.size
game = Array.new(z) do |i|
remaining_stones = ps[-1] - ps[i]
Hash.new do |h, m|
min_best_response = (i + 1..min(i + 2 * m, z)).map { game[_1][max(m, _1 - i)] }.min
h[m] = remaining_stones - min_best_response
end
end << -> _ { 0 }
game[0][1]
end
# **************** #
# TEST #
# **************** #
require "test/unit"
class Test_stone_game_ii < Test::Unit::TestCase
def test_
assert_equal 10, stone_game_ii([2, 7, 9, 4, 4])
assert_equal 104, stone_game_ii([1, 2, 3, 4, 5, 100])
end
end