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.  
  15. public int maxProfit(int[] prices) {
  16. int n = prices.length;
  17.  
  18. int rest = 0;
  19. int sold = 0;
  20. int held = 0 - prices[0];
  21.  
  22. int prevHeld = held;
  23. int prevRest = rest;
  24. int prevSold = sold;
  25. for (int i = 1 ; i < n ; i++) {
  26.  
  27. held = Math.max(prevRest - prices[i], prevHeld);
  28. sold = prevHeld + prices[i];
  29. rest = Math.max(prevRest, prevSold);
  30.  
  31. prevHeld = held;
  32. prevSold = sold;
  33. prevRest = rest;
  34. }
  35.  
  36. return Math.max(rest, sold);
  37. }
  38.  
  39. }
Success #stdin #stdout 0.09s 54536KB
stdin
Standard input is empty
stdout
Standard output is empty