mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
65 lines
2.7 KiB
HTML
65 lines
2.7 KiB
HTML
<p>Your country has an infinite number of lakes. Initially, all the lakes are empty, but when it rains over the <code>nth</code> lake, the <code>nth</code> lake becomes full of water. If it rains over a lake that is <strong>full of water</strong>, there will be a <strong>flood</strong>. Your goal is to avoid floods in any lake.</p>
|
|
|
|
<p>Given an integer array <code>rains</code> where:</p>
|
|
|
|
<ul>
|
|
<li><code>rains[i] > 0</code> means there will be rains over the <code>rains[i]</code> lake.</li>
|
|
<li><code>rains[i] == 0</code> means there are no rains this day and you can choose <strong>one lake</strong> this day and <strong>dry it</strong>.</li>
|
|
</ul>
|
|
|
|
<p>Return <em>an array <code>ans</code></em> where:</p>
|
|
|
|
<ul>
|
|
<li><code>ans.length == rains.length</code></li>
|
|
<li><code>ans[i] == -1</code> if <code>rains[i] > 0</code>.</li>
|
|
<li><code>ans[i]</code> is the lake you choose to dry in the <code>ith</code> day if <code>rains[i] == 0</code>.</li>
|
|
</ul>
|
|
|
|
<p>If there are multiple valid answers return <strong>any</strong> of them. If it is impossible to avoid flood return <strong>an empty array</strong>.</p>
|
|
|
|
<p>Notice that if you chose to dry a full lake, it becomes empty, but if you chose to dry an empty lake, nothing changes.</p>
|
|
|
|
<p> </p>
|
|
<p><strong>Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> rains = [1,2,3,4]
|
|
<strong>Output:</strong> [-1,-1,-1,-1]
|
|
<strong>Explanation:</strong> After the first day full lakes are [1]
|
|
After the second day full lakes are [1,2]
|
|
After the third day full lakes are [1,2,3]
|
|
After the fourth day full lakes are [1,2,3,4]
|
|
There's no day to dry any lake and there is no flood in any lake.
|
|
</pre>
|
|
|
|
<p><strong>Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> rains = [1,2,0,0,2,1]
|
|
<strong>Output:</strong> [-1,-1,2,1,-1,-1]
|
|
<strong>Explanation:</strong> After the first day full lakes are [1]
|
|
After the second day full lakes are [1,2]
|
|
After the third day, we dry lake 2. Full lakes are [1]
|
|
After the fourth day, we dry lake 1. There is no full lakes.
|
|
After the fifth day, full lakes are [2].
|
|
After the sixth day, full lakes are [1,2].
|
|
It is easy that this scenario is flood-free. [-1,-1,1,2,-1,-1] is another acceptable scenario.
|
|
</pre>
|
|
|
|
<p><strong>Example 3:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> rains = [1,2,0,1,2]
|
|
<strong>Output:</strong> []
|
|
<strong>Explanation:</strong> After the second day, full lakes are [1,2]. We have to dry one lake in the third day.
|
|
After that, it will rain over lakes [1,2]. It's easy to prove that no matter which lake you choose to dry in the 3rd day, the other one will flood.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= rains.length <= 10<sup>5</sup></code></li>
|
|
<li><code>0 <= rains[i] <= 10<sup>9</sup></code></li>
|
|
</ul>
|