-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path1575-count-all-possible-routes.rb
86 lines (72 loc) · 2.77 KB
/
1575-count-all-possible-routes.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# frozen_string_literal: true
# 1575. Count All Possible Routes
# Hard
# https://leetcode.com/problems/count-all-possible-routes
=begin
You are given an array of distinct positive integers locations where locations[i] represents the position of city i. You are also given integers start, finish and fuel representing the starting city, ending city, and the initial amount of fuel you have, respectively.
At each step, if you are at city i, you can pick any city j such that j != i and 0 <= j < locations.length and move to city j. Moving from city i to city j reduces the amount of fuel you have by |locations[i] - locations[j]|. Please notice that |x| denotes the absolute value of x.
Notice that fuel cannot become negative at any point in time, and that you are allowed to visit any city more than once (including start and finish).
Return the count of all possible routes from start to finish. Since the answer may be too large, return it modulo 109 + 7.
Example 1:
Input: locations = [2,3,6,8,4], start = 1, finish = 3, fuel = 5
Output: 4
Explanation: The following are all possible routes, each uses 5 units of fuel:
1 -> 3
1 -> 2 -> 3
1 -> 4 -> 3
1 -> 4 -> 2 -> 3
Example 2:
Input: locations = [4,3,1], start = 1, finish = 0, fuel = 6
Output: 5
Explanation: The following are all possible routes:
1 -> 0, used fuel = 1
1 -> 2 -> 0, used fuel = 5
1 -> 2 -> 1 -> 0, used fuel = 5
1 -> 0 -> 1 -> 0, used fuel = 3
1 -> 0 -> 1 -> 0 -> 1 -> 0, used fuel = 5
Example 3:
Input: locations = [5,2,1], start = 0, finish = 2, fuel = 3
Output: 0
Explanation: It is impossible to get from 0 to 2 using only 3 units of fuel since the shortest route needs 4 units of fuel.
Constraints:
* 2 <= locations.length <= 100
* 1 <= locations[i] <= 109
* All integers in locations are distinct.
* 0 <= start, finish < locations.length
* 1 <= fuel <= 200
=end
# @param {Integer[]} locations
# @param {Integer} start
# @param {Integer} finish
# @param {Integer} fuel
# @return {Integer}
def count_routes(locations, start, finish, fuel)
mod = 1000000007
@memo = Array.new(locations.length) { {} }
@locations = locations
@finish = finish
num_routes(start, fuel) % mod
end
def num_routes(curr, fuel)
return @memo[curr][fuel] if @memo[curr][fuel]
return 0 if fuel < 0
val = @locations[curr]
options = []
@locations.each_with_index do |location, i|
if i != curr
options << num_routes(i, fuel - (location - val).abs)
end
end
@memo[curr][fuel] = options.sum + (curr == @finish ? 1 : 0)
end
# ********************#
# TEST #
# ********************#
require "test/unit"
class Test_count_routes < Test::Unit::TestCase
def test_
assert_equal 4, count_routes([2, 3, 6, 8, 4], 1, 3, 5)
assert_equal 5, count_routes([4, 3, 1], 1, 0, 6)
assert_equal 0, count_routes([5, 2, 1], 0, 2, 3)
end
end