fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13. }
  14. public int maxProfit(int[] prices, int fee) {
  15. int[] hold = new int[prices.length];
  16. int[] free = new int[prices.length];
  17.  
  18. hold[0] = 0 - prices[0];
  19. free[0] = 0;
  20.  
  21. for (int i = 1 ; i < prices.length ; i++) {
  22. free[i] = Math.max(free[i - 1], hold[i - 1] + prices[i] - fee);
  23. hold[i] = Math.max(hold[i - 1], free[i - 1] - prices[i]);
  24. }
  25. return free[prices.length - 1];
  26. }
  27.  
  28. }
Success #stdin #stdout 0.09s 54380KB
stdin
Standard input is empty
stdout
Standard output is empty