Pour Water

Array

Medium

We are given an elevation map,heights[i]representing the height of the terrain at that index. The width at each index is 1. AfterVunits of water fall at indexK, how much water is at each index?

Water first drops at indexKand rests on top of the highest terrain or water at that index. Then, it flows according to the following rules:

If the droplet would eventually fall by moving left, then move left.

Otherwise, if the droplet would eventually fall by moving right, then move right.

Otherwise, rise at it's current position.

Here, "eventually fall" means that the droplet will eventually be at a lower level if it moves in that direction. Also, "level" means the height of the terrain plus any water in that column.

We can assume there's infinitely high terrain on the two sides out of bounds of the array. Also, there could not be partial water being spread out evenly on more than 1 grid block - each unit of water has to be in exactly one block.

Example 1:

Input:
 heights = [2,1,1,2,1,2,2], V = 4, K = 3

Output:
 [2,2,2,3,2,2,2]

Explanation:

#       #
#       #
##  # ###
#########
 0123456    
<
- index

The first drop of water lands at index K = 3:

#       #
#   w   #
##  # ###
#########
 0123456    

When moving left or right, the water can only move to the same level or a lower level.
(By level, we mean the total height of the terrain plus any water in that column.)
Since moving left will eventually make it fall, it moves left.
(A droplet "made to fall" means go to a lower height than it was at previously.)

#       #
#       #
## w# ###
#########
 0123456    

Since moving left will not make it fall, it stays in place.  The next droplet falls:

#       #
#   w   #
## w# ###
#########
 0123456  

Since the new droplet moving left will eventually make it fall, it moves left.
Notice that the droplet still preferred to move left,
even though it could move right (and moving right makes it fall quicker.)

#       #
#  w    #
## w# ###
#########
 0123456  

#       #
#       #
##ww# ###
#########
 0123456  

After those steps, the third droplet falls.
Since moving left would not eventually make it fall, it tries to move right.
Since moving right would eventually make it fall, it moves right.

#       #
#   w   #
##ww# ###
#########
 0123456  

#       #
#       #
##ww#w###
#########
 0123456  

Finally, the fourth droplet falls.
Since moving left would not eventually make it fall, it tries to move right.
Since moving right would not eventually make it fall, it stays in place:

#       #
#   w   #
##ww#w###
#########
 0123456  

The final answer is [2,2,2,3,2,2,2]:

    #    
 ####### 
 ####### 
 0123456

Example 2:

Example 3:

Note:

  1. heightswill have length in [1, 100] and contain integers in [0, 99].

  2. V will be in range [0, 2000].

  3. K will be in range [0, heights.length - 1].

Solution & Analysis

题目很长,但是简而言之就是从一个点K倒水,水量为V,返回最终水倒完后的Array。

有一点需要注意的是水流动的方向顺序,先左,再右,如果左右都没有更低的地势,则留在那一点。且水不会平摊,也就是说会出现如下情况:

也就是水的最小单位为1,不会平摊。

开始想到用Trapping Rain Water的动态规划数组left[], right[]来记录左侧能填入的最深处,但是发现方法不好,因为倒水的过程实际在动态改变left[], right[],也就失去了先loop得到left[], right[]的价值。

直白解法就是模拟法:

对于每一滴水,往左找能达到的最低点,再往右找能达到的最低点。搜索过程中需要严格单调递减,如果相等则改变i,但是不调整最低点的index,若>最低点的高度,则break。

直白解法 (4 ms, faster than 83.59%)

LeetCode上一个解法,也是模拟法,但是很神奇很巧妙:

by @zxyperfect

Imagine water drop moves left, and then moves right, and then moves left to position K. The position it stops is where it will stay.

模拟水滴的动态过程:设一个指针curr,让水滴向左,向右,最后回到K,最终停下的位置就是加水位的位置。

PriorityQueue 解法

by @CoffeeMaker & @ShawnWangCMU

PriorityQueue记录左右最低点的index,并且在fill water drop的过程中可以动态地更新这个PQ。

Last updated

Was this helpful?