Skip to content

Commit 0839043

Browse files
committed
feat: add solutions to lc problem: No.3502
No.3502.Minimum Cost to Reach Every Position
1 parent f3a554f commit 0839043

File tree

7 files changed

+188
-8
lines changed

7 files changed

+188
-8
lines changed

solution/3500-3599/3502.Minimum Cost to Reach Every Position/README.md

+67-4
Original file line numberDiff line numberDiff line change
@@ -77,32 +77,95 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/3500-3599/3502.Mi
7777

7878
<!-- solution:start -->
7979

80-
### 方法一
80+
### 方法一:脑筋急转弯
81+
82+
根据题目描述,每个位置 $i$ 的最小费用,就是从 $0$ 到 $i$ 的最小费用。我们可以用一个变量 $\textit{mi}$ 来记录从 $0$ 到 $i$ 的最小费用。
83+
84+
我们从 $0$ 开始遍历每个位置 $i$,每次更新 $\textit{mi}$ 为 $\text{min}(\textit{mi}, \text{cost}[i])$,然后将 $\textit{mi}$ 赋值给答案数组的第 $i$ 个位置。
85+
86+
最后返回答案数组即可。
87+
88+
时间复杂度 $O(n)$,其中 $n$ 为数组 $\textit{cost}$ 的长度。忽略答案数组的空间消耗,空间复杂度 $O(1)$。
8189

8290
<!-- tabs:start -->
8391

8492
#### Python3
8593

8694
```python
87-
95+
class Solution:
96+
def minCosts(self, cost: List[int]) -> List[int]:
97+
n = len(cost)
98+
ans = [0] * n
99+
mi = cost[0]
100+
for i, c in enumerate(cost):
101+
mi = min(mi, c)
102+
ans[i] = mi
103+
return ans
88104
```
89105

90106
#### Java
91107

92108
```java
93-
109+
class Solution {
110+
public int[] minCosts(int[] cost) {
111+
int n = cost.length;
112+
int[] ans = new int[n];
113+
int mi = cost[0];
114+
for (int i = 0; i < n; ++i) {
115+
mi = Math.min(mi, cost[i]);
116+
ans[i] = mi;
117+
}
118+
return ans;
119+
}
120+
}
94121
```
95122

96123
#### C++
97124

98125
```cpp
99-
126+
class Solution {
127+
public:
128+
vector<int> minCosts(vector<int>& cost) {
129+
int n = cost.size();
130+
vector<int> ans(n);
131+
int mi = cost[0];
132+
for (int i = 0; i < n; ++i) {
133+
mi = min(mi, cost[i]);
134+
ans[i] = mi;
135+
}
136+
return ans;
137+
}
138+
};
100139
```
101140
102141
#### Go
103142
104143
```go
144+
func minCosts(cost []int) []int {
145+
n := len(cost)
146+
ans := make([]int, n)
147+
mi := cost[0]
148+
for i, c := range cost {
149+
mi = min(mi, c)
150+
ans[i] = mi
151+
}
152+
return ans
153+
}
154+
```
105155

156+
#### TypeScript
157+
158+
```ts
159+
function minCosts(cost: number[]): number[] {
160+
const n = cost.length;
161+
const ans: number[] = Array(n).fill(0);
162+
let mi = cost[0];
163+
for (let i = 0; i < n; ++i) {
164+
mi = Math.min(mi, cost[i]);
165+
ans[i] = mi;
166+
}
167+
return ans;
168+
}
106169
```
107170

108171
<!-- tabs:end -->

solution/3500-3599/3502.Minimum Cost to Reach Every Position/README_EN.md

+67-4
Original file line numberDiff line numberDiff line change
@@ -75,32 +75,95 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/3500-3599/3502.Mi
7575

7676
<!-- solution:start -->
7777

78-
### Solution 1
78+
### Solution 1: Brain Teaser
79+
80+
According to the problem description, the minimum cost for each position $i$ is the minimum cost from $0$ to $i$. We can use a variable $\textit{mi}$ to record the minimum cost from $0$ to $i$.
81+
82+
Starting from $0$, we iterate through each position $i$, updating $\textit{mi}$ as $\text{min}(\textit{mi}, \text{cost}[i])$ at each step, and assign $\textit{mi}$ to the $i$-th position of the answer array.
83+
84+
Finally, return the answer array.
85+
86+
Time complexity is $O(n)$, where $n$ is the length of the array $\textit{cost}$. Ignoring the space used by the answer array, the space complexity is $O(1)$.
7987

8088
<!-- tabs:start -->
8189

8290
#### Python3
8391

8492
```python
85-
93+
class Solution:
94+
def minCosts(self, cost: List[int]) -> List[int]:
95+
n = len(cost)
96+
ans = [0] * n
97+
mi = cost[0]
98+
for i, c in enumerate(cost):
99+
mi = min(mi, c)
100+
ans[i] = mi
101+
return ans
86102
```
87103

88104
#### Java
89105

90106
```java
91-
107+
class Solution {
108+
public int[] minCosts(int[] cost) {
109+
int n = cost.length;
110+
int[] ans = new int[n];
111+
int mi = cost[0];
112+
for (int i = 0; i < n; ++i) {
113+
mi = Math.min(mi, cost[i]);
114+
ans[i] = mi;
115+
}
116+
return ans;
117+
}
118+
}
92119
```
93120

94121
#### C++
95122

96123
```cpp
97-
124+
class Solution {
125+
public:
126+
vector<int> minCosts(vector<int>& cost) {
127+
int n = cost.size();
128+
vector<int> ans(n);
129+
int mi = cost[0];
130+
for (int i = 0; i < n; ++i) {
131+
mi = min(mi, cost[i]);
132+
ans[i] = mi;
133+
}
134+
return ans;
135+
}
136+
};
98137
```
99138
100139
#### Go
101140
102141
```go
142+
func minCosts(cost []int) []int {
143+
n := len(cost)
144+
ans := make([]int, n)
145+
mi := cost[0]
146+
for i, c := range cost {
147+
mi = min(mi, c)
148+
ans[i] = mi
149+
}
150+
return ans
151+
}
152+
```
103153

154+
#### TypeScript
155+
156+
```ts
157+
function minCosts(cost: number[]): number[] {
158+
const n = cost.length;
159+
const ans: number[] = Array(n).fill(0);
160+
let mi = cost[0];
161+
for (let i = 0; i < n; ++i) {
162+
mi = Math.min(mi, cost[i]);
163+
ans[i] = mi;
164+
}
165+
return ans;
166+
}
104167
```
105168

106169
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Solution {
2+
public:
3+
vector<int> minCosts(vector<int>& cost) {
4+
int n = cost.size();
5+
vector<int> ans(n);
6+
int mi = cost[0];
7+
for (int i = 0; i < n; ++i) {
8+
mi = min(mi, cost[i]);
9+
ans[i] = mi;
10+
}
11+
return ans;
12+
}
13+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
func minCosts(cost []int) []int {
2+
n := len(cost)
3+
ans := make([]int, n)
4+
mi := cost[0]
5+
for i, c := range cost {
6+
mi = min(mi, c)
7+
ans[i] = mi
8+
}
9+
return ans
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class Solution {
2+
public int[] minCosts(int[] cost) {
3+
int n = cost.length;
4+
int[] ans = new int[n];
5+
int mi = cost[0];
6+
for (int i = 0; i < n; ++i) {
7+
mi = Math.min(mi, cost[i]);
8+
ans[i] = mi;
9+
}
10+
return ans;
11+
}
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class Solution:
2+
def minCosts(self, cost: List[int]) -> List[int]:
3+
n = len(cost)
4+
ans = [0] * n
5+
mi = cost[0]
6+
for i, c in enumerate(cost):
7+
mi = min(mi, c)
8+
ans[i] = mi
9+
return ans
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function minCosts(cost: number[]): number[] {
2+
const n = cost.length;
3+
const ans: number[] = Array(n).fill(0);
4+
let mi = cost[0];
5+
for (let i = 0; i < n; ++i) {
6+
mi = Math.min(mi, cost[i]);
7+
ans[i] = mi;
8+
}
9+
return ans;
10+
}

0 commit comments

Comments
 (0)