-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path1269-number-of-ways-to-stay-in-the-same-place-after-some-steps.rb
59 lines (50 loc) · 1.61 KB
/
1269-number-of-ways-to-stay-in-the-same-place-after-some-steps.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
# frozen_string_literal: true
# 1269. Number of Ways to Stay in the Same Place After Some Steps
# Hard
# https://leetcode.com/problems/number-of-ways-to-stay-in-the-same-place-after-some-steps
=begin
You have a pointer at index 0 in an array of size arrLen. At each step, you can move 1 position to the left, 1 position to the right in the array, or stay in the same place (The pointer should not be placed outside the array at any time).
Given two integers steps and arrLen, return the number of ways such that your pointer is still at index 0 after exactly steps steps. Since the answer may be too large, return it modulo 10^9 + 7.
Example 1:
Input: steps = 3, arrLen = 2
Output: 4
Explanation: There are 4 differents ways to stay at index 0 after 3 steps.
Right, Left, Stay
Stay, Right, Left
Right, Stay, Left
Stay, Stay, Stay
Example 2:
Input: steps = 2, arrLen = 4
Output: 2
Explanation: There are 2 differents ways to stay at index 0 after 2 steps
Right, Left
Stay, Stay
Example 3:
Input: steps = 4, arrLen = 2
Output: 8
Constraints:
1 <= steps <= 500
1 <= arrLen <= 106
=end
# @param {Integer} steps
# @param {Integer} arr_len
# @return {Integer}
MOD = 10**9 + 7
def num_ways(steps, arr_len)
max_pos = [steps / 2, arr_len - 1].min
(dp = Array.new(max_pos + 3, 0))[1] = 1
steps.times.inject(dp) { |dp, i|
[0] + dp.each_cons(3).collect { |c| c.sum % MOD } + [0]
}[1]
end
# **************** #
# TEST #
# **************** #
require "test/unit"
class Test_num_ways < Test::Unit::TestCase
def test_
assert_equal 4, num_ways(3, 2)
assert_equal 2, num_ways(2, 4)
assert_equal 8, num_ways(4, 2)
end
end