Problem
Your are given an array of integers prices
, for which the i
-th element is the price of a given stock on day i
; and a non-negative integer fee
representing a transaction fee.
You may complete as many transactions as you like, but you need to pay the transaction fee for each transaction. You may not buy more than 1 share of a stock at a time (ie. you must sell the stock share before you buy again.)
Return the maximum profit you can make.
Examples
Example 1:
|
|
Solution
Method 1 - Handling the states
Here is the approach:
- Cash and Hold States:
cash
represents the maximum profit we can have if we do not own a stock on thei-th
day.hold
represents the maximum profit we can have if we own a stock on thei-th
day.
- Transition between states:
- When selling a stock:
cash = max(cash, hold + prices[i] - fee)
- When buying a stock:
hold = max(hold, cash - prices[i])
- When selling a stock:
Code
|
|
|
|