雨水をトラップする
20415 ワード
問題声明
各々のバーの幅が1である立面図を表しているNの非負の整数を与えられて、雨の後、それがどれくらいの水をトラップすることができるかについて計算します.
からの問題文 https://leetcode.com/problems/trapping-rain-water
例1 :
Input: height = [0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1]
Output: 6
Explanation: The above elevation map (black section) is represented by array [0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1]. In this case, 6 units of rain water (blue section) are being trapped.
例2 :Input: height = [4, 2, 0, 3, 2, 5]
Output: 9
制約- n == height.length
- 1 <= n <= 2 * 10^4
- 0 <= height[i] <= 10^5
解説
ブルートフォースアプローチ
最も簡単な解決策は、配列の各要素が格納できる最大レベルの水を計算することである.これは両側のバーの高さの最小高さを最小とする高さに等しい.
上記のアプローチのC++断片は以下のようになります.
int maxWater(int arr[], int n) {
int res = 0;
for (int i = 1; i < n - 1; i++) {
int left = arr[i];
for (int j = 0; j < i; j++)
left = max(left, arr[j]);
int right = arr[i];
for (int j = i + 1; j<n; j++)
right = max(right, arr[j]);
res = res + (min(left, right) - arr[i]);
}
return res;
}
2つのネストしたループを用いているので、上記のアプローチの時間複雑さはO(n ^ 2)である.空間の複雑さはo(1)である.動的計画法
ブルートフォースアプローチでは、繰り返し配列の左右の部分を反復して水の貯留を計算します.しかし、この最大値を格納することができます.
左と右という2つの配列を作成します.我々は、配列の上で繰り返すように最大左と最大右を更新し続けます.
最終結果を計算するには、以下の式を使用します.
ans += min(left_max[i], right_max[i]) - height[i]
上記のアプローチのC +スニペットは以下のようになります.int ans = 0;
int size = height.size();
vector<int> left_max(size), right_max(size);
left_max[0] = height[0];
for (int i = 1; i < size; i++) {
left_max[i] = max(height[i], left_max[i - 1]);
}
right_max[size - 1] = height[size - 1];
for (int i = size - 2; i >= 0; i--) {
right_max[i] = max(height[i], right_max[i + 1]);
}
for (int i = 1; i < size - 1; i++) {
ans += min(left_max[i], right_max[i]) - height[i];
}
return ans;
このアプローチの時間複雑さはo(n)である.我々は2つのアレイを使用し,左と右のように,このアプローチの空間複雑さはo(n)である.空間最適化動的計画法
つの配列の代わりに2つの単純変数を用いることにより,上記解を最適化できる.任意の要素にトラップされた水は以下の式で計算できます.
ans += min(max_left, max_right) – arr[i]
したがって、左のポインタと右のポインタを移動することができます.アルゴリズムをチェックしましょう
- set low = 0, high = height.size() - 1, res = 0
set low_max = 0, high_max = 0
- loop while low <= high
- if height[low] < height[high]
- if height[low] > low_max
- set low_max = height[low]
- else
- update res += low_max - height[low]
- update low++
- else
- if height[high] > high_max
- set high_max = height[high]
- else
- update res += high_max - height[high]
- update high--
- return res
C++ソリューション
class Solution {
public:
int trap(vector<int>& height) {
int low = 0, high = height.size() - 1, res = 0;
int low_max = 0, high_max = 0;
while(low <= high){
if(height[low] < height[high]){
if (height[low] > low_max){
low_max = height[low];
} else {
res += low_max - height[low];
}
low++;
} else {
if (height[high] > high_max){
high_max = height[high];
} else {
res += high_max - height[high];
}
high--;
}
}
return res;
}
};
ゴランソリューション
func trap(height []int) int {
low, high, res := 0, len(height) - 1, 0
low_max, high_max := 0, 0
for low <= high {
if height[low] < height[high] {
if height[low] > low_max {
low_max = height[low]
} else {
res += low_max - height[low]
}
low++
} else {
if height[high] > high_max {
high_max = height[high]
} else {
res += high_max - height[high]
}
high--
}
}
return res
}
ジャバスクリプト
var trap = function(height) {
let low = 0, high = height.length - 1, res = 0;
let low_max = 0, high_max = 0;
while( low <= high ) {
if( height[low] < height[high] ) {
if( height[low] > low_max ) {
low_max = height[low];
} else {
res += low_max - height[low];
}
low++;
} else {
if( height[high] > high_max ) {
high_max = height[high];
} else {
res += high_max - height[high];
}
high--;
}
}
return res;
};
解決策がどのように動くかを見るために、我々のアルゴリズムを実行しましょう.Input: height = [4, 2, 0, 3, 2, 5]
Step 1: int low = 0, high = height.size() - 1, res = 0
low = 0, high = 5, res = 0
int low_max = 0, high_max = 0
Step 2: loop while low <= high
0 <= 5
true
if height[low] < height[high]
height[0] < height[5]
4 < 5
true
if height[low] > low_max
height[0] > 0
4 > 0
true
set low_max = height[low]
= height[0]
= 4
low++
low = 1
Step 3: loop while low <= high
1 <= 5
true
if height[low] < height[high]
height[1] < height[5]
2 < 5
true
if height[low] > low_max
height[1] > 4
2 > 4
false
res = res + low_max - height[low]
= 0 + 4 - 2
= 2
low++
low = 2
Step 4: loop while low <= high
2 <= 5
true
if height[low] < height[high]
height[2] < height[5]
0 < 5
true
if height[low] > low_max
height[2] > 4
0 > 4
false
res = res + low_max - height[low]
= 2 + 4 - 0
= 6
low++
low = 3
Step 5: loop while low <= high
3 <= 5
true
if height[low] < height[high]
height[3] < height[5]
3 < 5
true
if height[low] > low_max
height[3] > 4
3 > 4
false
res = res + low_max - height[low]
= 6 + 4 - 3
= 7
low++
low = 4
Step 6: loop while low <= high
4 <= 5
true
if height[low] < height[high]
height[4] < height[5]
2 < 5
true
if height[low] > low_max
height[4] > 4
2 > 4
false
res = res + low_max - height[low]
= 7 + 4 - 2
= 9
low++
low = 5
Step 7: loop while low <= high
5 <= 5
true
if height[low] < height[high]
height[5] < height[5]
5 < 5
false
if height[high] > high_max
height[5] > 0
5 > 0
true
high_max = height[high]
= height[5]
= 5
high--
high = 4
Step 8: loop while low <= high
5 <= 4
false
Step 9: return res
So the answer we return is 9.
Reference
この問題について(雨水をトラップする), 我々は、より多くの情報をここで見つけました https://dev.to/_alkesh26/leetcode-trapping-rain-water-3gibテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol