|
66 | 66 |
|
67 | 67 | <!-- 这里可写通用的实现逻辑 -->
|
68 | 68 |
|
| 69 | +**方法一:记忆化搜索** |
| 70 | + |
69 | 71 | <!-- tabs:start -->
|
70 | 72 |
|
71 | 73 | ### **Python3**
|
72 | 74 |
|
73 | 75 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
74 | 76 |
|
75 | 77 | ```python
|
76 |
| - |
| 78 | +class Solution: |
| 79 | + def countRoutes(self, locations: List[int], start: int, finish: int, fuel: int) -> int: |
| 80 | + @cache |
| 81 | + def dfs(i, t): |
| 82 | + if abs(locations[i] - locations[finish]) > t: |
| 83 | + return 0 |
| 84 | + res = int(i == finish) |
| 85 | + for j, v in enumerate(locations): |
| 86 | + if j != i: |
| 87 | + if (cost := abs(locations[i] - v)) <= t: |
| 88 | + res += dfs(j, t - cost) |
| 89 | + return res % mod |
| 90 | + |
| 91 | + mod = 10**9 + 7 |
| 92 | + return dfs(start, fuel) |
77 | 93 | ```
|
78 | 94 |
|
79 | 95 | ### **Java**
|
80 | 96 |
|
81 | 97 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
82 | 98 |
|
83 | 99 | ```java
|
| 100 | +class Solution { |
| 101 | + private int[][] f; |
| 102 | + private int[] locations; |
| 103 | + private int target; |
| 104 | + private static final int MOD = (int) 1e9 + 7; |
| 105 | + |
| 106 | + public int countRoutes(int[] locations, int start, int finish, int fuel) { |
| 107 | + int n = locations.length; |
| 108 | + f = new int[n + 1][fuel + 1]; |
| 109 | + this.locations = locations; |
| 110 | + target = finish; |
| 111 | + for (int i = 0; i < f.length; ++i) { |
| 112 | + Arrays.fill(f[i], -1); |
| 113 | + } |
| 114 | + return dfs(start, fuel); |
| 115 | + } |
| 116 | + |
| 117 | + private int dfs(int i, int t) { |
| 118 | + if (f[i][t] != -1) { |
| 119 | + return f[i][t]; |
| 120 | + } |
| 121 | + if (Math.abs(locations[i] - locations[target]) > t) { |
| 122 | + return 0; |
| 123 | + } |
| 124 | + int res = i == target ? 1 : 0; |
| 125 | + for (int j = 0; j < locations.length; ++j) { |
| 126 | + if (j != i) { |
| 127 | + int cost = Math.abs(locations[i] - locations[j]); |
| 128 | + if (cost <= t) { |
| 129 | + res += dfs(j, t - cost); |
| 130 | + res %= MOD; |
| 131 | + } |
| 132 | + } |
| 133 | + } |
| 134 | + f[i][t] = res; |
| 135 | + return res; |
| 136 | + } |
| 137 | +} |
| 138 | +``` |
| 139 | + |
| 140 | +### **C++** |
| 141 | + |
| 142 | +```cpp |
| 143 | +class Solution { |
| 144 | +public: |
| 145 | + const int mod = 1e9 + 7; |
| 146 | + |
| 147 | + int countRoutes(vector<int>& locations, int start, int finish, int fuel) { |
| 148 | + int n = locations.size(); |
| 149 | + vector<vector<int>> f(n + 1, vector<int>(fuel + 1, -1)); |
| 150 | + return dfs(start, fuel, locations, finish, f); |
| 151 | + } |
| 152 | + |
| 153 | + int dfs(int i, int t, vector<int>& locations, int target, vector<vector<int>>& f) { |
| 154 | + if (f[i][t] != -1) return f[i][t]; |
| 155 | + if (abs(locations[i] - locations[target]) > t) return 0; |
| 156 | + int res = i == target; |
| 157 | + for (int j = 0; j < locations.size(); ++j) |
| 158 | + { |
| 159 | + if (j == i) continue; |
| 160 | + int cost = abs(locations[i] - locations[j]); |
| 161 | + if (cost <= t) res = (res + dfs(j, t - cost, locations, target, f)) % mod; |
| 162 | + } |
| 163 | + f[i][t] = res; |
| 164 | + return res; |
| 165 | + } |
| 166 | +}; |
| 167 | +``` |
84 | 168 |
|
| 169 | +### **Go** |
| 170 | +
|
| 171 | +```go |
| 172 | +func countRoutes(locations []int, start int, finish int, fuel int) int { |
| 173 | + n := len(locations) |
| 174 | + f := make([][]int, n+1) |
| 175 | + for i := range f { |
| 176 | + f[i] = make([]int, fuel+1) |
| 177 | + for j := range f[i] { |
| 178 | + f[i][j] = -1 |
| 179 | + } |
| 180 | + } |
| 181 | + mod := int(1e9) + 7 |
| 182 | + var dfs func(int, int) int |
| 183 | + dfs = func(i, t int) int { |
| 184 | + if f[i][t] != -1 { |
| 185 | + return f[i][t] |
| 186 | + } |
| 187 | + if abs(locations[i]-locations[finish]) > t { |
| 188 | + return 0 |
| 189 | + } |
| 190 | + res := 0 |
| 191 | + if i == finish { |
| 192 | + res++ |
| 193 | + } |
| 194 | + for j, v := range locations { |
| 195 | + if j != i { |
| 196 | + cost := abs(locations[i] - v) |
| 197 | + if cost <= t { |
| 198 | + res = (res + dfs(j, t-cost)) % mod |
| 199 | + } |
| 200 | + } |
| 201 | + } |
| 202 | + f[i][t] = res |
| 203 | + return res |
| 204 | + } |
| 205 | + return dfs(start, fuel) |
| 206 | +} |
| 207 | +
|
| 208 | +func abs(x int) int { |
| 209 | + if x < 0 { |
| 210 | + return -x |
| 211 | + } |
| 212 | + return x |
| 213 | +} |
85 | 214 | ```
|
86 | 215 |
|
87 | 216 | ### **...**
|
|
0 commit comments