Skip to content

Commit 183a942

Browse files
committed
feat: add solutions to lc problem: No.0042
No.0042.Trapping Rain Water
1 parent 2203c9b commit 183a942

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

solution/0000-0099/0042.Trapping Rain Water/README.md

+23
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,29 @@ function trap(height: number[]): number {
165165
}
166166
```
167167

168+
### **C#**
169+
170+
```cs
171+
public class Solution {
172+
public int Trap(int[] height) {
173+
int n = height.Length;
174+
int[] left = new int[n];
175+
int[] right = new int[n];
176+
left[0] = height[0];
177+
right[n - 1] = height[n - 1];
178+
for (int i = 1; i < n; ++i) {
179+
left[i] = Math.Max(left[i - 1], height[i]);
180+
right[n - i - 1] = Math.Max(right[n - i], height[n - i - 1]);
181+
}
182+
int ans = 0;
183+
for (int i = 0; i < n; ++i) {
184+
ans += Math.Min(left[i], right[i]) - height[i];
185+
}
186+
return ans;
187+
}
188+
}
189+
```
190+
168191
### **...**
169192

170193
```

solution/0000-0099/0042.Trapping Rain Water/README_EN.md

+29
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@
3333

3434
## Solutions
3535

36+
**Approach 1: Dynamic Programming**
37+
38+
We define $left[i]$ as the height of the highest pillar to the left of and including the position with index $i$, and define $right[i]$ as the height of the highest pillar to the right of and including the position with index $i$. Then the amount of rain water that can be trapped at the position with index $i$ is $min(left[i], right[i]) - height[i]$. We traverse the array, calculate $left[i]$ and $right[i]$, and the answer is $\sum_{i=0}^{n-1} min(left[i], right[i]) - height[i]$.
39+
40+
The time complexity is $O(n)$, and the space complexity is $O(n)$, where $n$ is the length of the array.
41+
3642
<!-- tabs:start -->
3743

3844
### **Python3**
@@ -147,6 +153,29 @@ function trap(height: number[]): number {
147153
}
148154
```
149155

156+
### **C#**
157+
158+
```cs
159+
public class Solution {
160+
public int Trap(int[] height) {
161+
int n = height.Length;
162+
int[] left = new int[n];
163+
int[] right = new int[n];
164+
left[0] = height[0];
165+
right[n - 1] = height[n - 1];
166+
for (int i = 1; i < n; ++i) {
167+
left[i] = Math.Max(left[i - 1], height[i]);
168+
right[n - i - 1] = Math.Max(right[n - i], height[n - i - 1]);
169+
}
170+
int ans = 0;
171+
for (int i = 0; i < n; ++i) {
172+
ans += Math.Min(left[i], right[i]) - height[i];
173+
}
174+
return ans;
175+
}
176+
}
177+
```
178+
150179
### **...**
151180

152181
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
public class Solution {
2+
public int Trap(int[] height) {
3+
int n = height.Length;
4+
int[] left = new int[n];
5+
int[] right = new int[n];
6+
left[0] = height[0];
7+
right[n - 1] = height[n - 1];
8+
for (int i = 1; i < n; ++i) {
9+
left[i] = Math.Max(left[i - 1], height[i]);
10+
right[n - i - 1] = Math.Max(right[n - i], height[n - i - 1]);
11+
}
12+
int ans = 0;
13+
for (int i = 0; i < n; ++i) {
14+
ans += Math.Min(left[i], right[i]) - height[i];
15+
}
16+
return ans;
17+
}
18+
}

0 commit comments

Comments
 (0)