mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 15:01:40 +08:00
国外版
This commit is contained in:
33
算法题(国外版)/best-time-to-buy-and-sell-stock-with-cooldown.html
Normal file
33
算法题(国外版)/best-time-to-buy-and-sell-stock-with-cooldown.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<p>You are given an array <code>prices</code> where <code>prices[i]</code> is the price of a given stock on the <code>i<sup>th</sup></code> day.</p>
|
||||
|
||||
<p>Find the maximum profit you can achieve. You may complete as many transactions as you like (i.e., buy one and sell one share of the stock multiple times) with the following restrictions:</p>
|
||||
|
||||
<ul>
|
||||
<li>After you sell your stock, you cannot buy stock on the next day (i.e., cooldown one day).</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Note:</strong> You may not engage in multiple transactions simultaneously (i.e., you must sell the stock before you buy again).</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> prices = [1,2,3,0,2]
|
||||
<strong>Output:</strong> 3
|
||||
<strong>Explanation:</strong> transactions = [buy, sell, cooldown, buy, sell]
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> prices = [1]
|
||||
<strong>Output:</strong> 0
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Constraints:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= prices.length <= 5000</code></li>
|
||||
<li><code>0 <= prices[i] <= 1000</code></li>
|
||||
</ul>
|
Reference in New Issue
Block a user