Best time to buy and sell stock

๋ฌธ์ œ

๊ฐ€๊ฒฉ์ด ์‹œ๊ฐ„์ˆœ์œผ๋กœ ๋‚˜์—ด๋œ prices ๋ฆฌ์ŠคํŠธ๊ฐ€ ์ฃผ์–ด์กŒ์„๋•Œ ์ตœ๋Œ€์˜ ์ด์ต์„ ๋ณด๊ธฐ ์œ„ํ•ด์„œ ์–ธ์ œ ์ฃผ์‹์„ ์‚ฌ๊ณ  ํŒ”์•„์•ผ ํ•˜๋Š”์ง€๋ฅผ ๊ณ„์‚ฐํ•ด์„œ ๊ทธ ์ตœ๋Œ€ ์ด์ต๊ฐ’์„ ๋ฐ˜ํ™˜ํ•œ๋‹ค. ๋งŒ์•ฝ ์ด์ต์„ ๋ณผ ์ˆ˜ ์—†๋Š” ๋ฆฌ์ŠคํŠธ๊ฐ€ ์ฃผ์–ด์ง„ ๊ฒฝ์šฐ 0์„ ๋ฐ˜ํ™˜ํ•œ๋‹ค.

prices = [7,1,5,3,6,4] -> output = 5:(6-1์ด๋ผ์„œ)

ํ’€์ด

์ด์ค‘ํฌ์ธํ„ฐ๋ฅผ ์‚ฌ์šฉํ•ด์„œ ์ตœ๋Œ€ ๊ฐ’์„ ๋ฐ›์œผ๋ ค๊ณ  ํ–ˆ๋‹ค.

class Solution:
    def maxProfit(self, prices: List[int]) -> int:
        new_prices = [[i,v] for i,v in enumerate(prices)]
        new_prices.sort(key=lambda x:x[1])
        
        max_profit = 0
        profits =[]
        left = 0
        for i in range(len(prices)):
            left = i
            right = len(prices)-1
            while left < right:
                if new_prices[right][0] < new_prices[left][0]:
                    right -= 1
                else:
                    max_profit = new_prices[right][1] - new_prices[left][1]
                    right -= 1
                    profits.append(max_profit)
        if not profits:
            return 0
        else:
            return max(profits)

์‹œ๊ฐ„์ดˆ๊ณผ๊ฐ€ ๋‚œ๋‹ค. ์ •๋ ฌํ•˜๊ณ  ๋ฐ˜๋ณต๋ฌธ์„ ๋ชจ๋“  ์‹œ์ž‘์ ์— ๋Œ€ํ•ด์„œ ๋Œ๋ ค์•ผ ํ•˜๊ธฐ ๋•Œ๋ฌธ์ด๋‹ค. ๋”ฐ๋ผ์„œ ์ด์ค‘ํฌ์ธํ„ฐ๋กœ ํ‘ธ๋Š” ๋ฐฉ์‹์—์„œ ํšจ์œจ ์ด๋“์„ ์–ป์ง€ ๋ชปํ•˜๋Š” ๋ฌธ์ œ๋‹ค.

๋‹ค๋ฅธ ๋ฐฉ์‹์œผ๋กœ ํ’€์–ด๋ณด์•˜๋‹ค. ์–ด์ฐจํ”ผ ์‹œ๊ฐ„์ˆœ์„œ๋Œ€๋กœ ์ตœ๋Œ€๊ฐ’์„ ๊ตฌํ•ด์•ผํ•˜๋ฏ€๋กœ ์ˆœ์ฐจ์ ์œผ๋กœ ํ•œ๋ฒˆ์€ ๋Œ์•„์•ผ ํ•œ๋‹ค. ์ตœ๋Œ€ ํ•œ๋ฒˆ๋งŒ ๋„๋Š” ๋ฐฉ์‹์œผ๋กœ ์žฌ๊ตฌ์„ฑํ•ด๋ณธ๋‹ค.

class Solution:
    def maxProfit(self, prices: List[int]) -> int:
        max_profit = 0
        for i in range(0,len(prices)-1):
            rest = prices[i+1:]
            max_price = max(rest)
            if prices[i] < max_price:
                if max_profit < max_price - prices[i]:
                    max_profit = max_price - prices[i]
        return max_profit

์ด๋ ‡๊ฒŒ ํ•ด์„œ ์‹œ๊ฐ„ ๋ณต์žก๋„๋ฅผ ์ค„์ด๊ธฐ๋Š” ํ–ˆ์ง€๋งŒ ๊ทธ๋ž˜๋„ ์‹œ๊ฐ„ ์ดˆ๊ณผ๊ฐ€ ๋ฐœ์ƒํ–ˆ๋‹ค. ๋‹ค๋ฅธ ๋ฐฉ๋ฒ•์œผ๋กœ ํ•ด๊ฒฐํ•ด์•ผ ํ•œ๋‹ค. ์•„๋ฌด๋ž˜๋„ ๋ฌธ์ œ๊ฐ€ ์žˆ๋Š” ๋ถ€๋ถ„์€ max_price๋ฅผ ๊ตฌํ•˜๊ธฐ ์œ„ํ•ด rest๋ฅผ ๊ตฌํ•˜๋Š” ๊ณผ์ •์—์„œ์ธ๊ฒƒ ๊ฐ™๋‹ค. ์ด๋ ‡๊ฒŒ ํ•˜์ง€ ์•Š๊ณ  ๊ฒฐ๊ตญ ๋’ท๋ถ€๋ถ„์˜ ์ตœ๋Œ€๊ฐ’์„ ๊ตฌํ•˜๋Š” ๊ฒƒ์ด ํ•ต์‹ฌ์ด๋ฏ€๋กœ ๋ฆฌ์ŠคํŠธ๋ฅผ ๋’ค์ง‘์–ด ๋’ค์—์„œ๋ถ€ํ„ฐ ์ตœ๋Œ€๊ฐ’์„ ์ฐพ๋Š” ๋ฐฉ์‹์œผ๋กœ ๊ฐœ์„ ํ•ด๋ณด๋ ค๊ณ  ํ•œ๋‹ค.

class Solution:
    def maxProfit(self, prices: List[int]) -> int:
        max_profit = 0
        max_price = 0

        for price in reversed(prices):
            if max_price < price:
                max_price = price
                print(max_price)
            max_profit = max(max_profit, max_price - price)
            print(max_profit)
        return max_profit

ํ•ด๊ฒฐํ–ˆ๋‹ค.

์•Œ๊ฒŒ๋œ ์ 

  • ์ด์ค‘ํฌ์ธํ„ฐ๋Š” ์™ผ์ชฝ๊ณผ ์˜ค๋ฅธ์ชฝ์„ ๋ชจ๋‘ ์›€์ง์ผ ์ˆ˜ ์—†๋Š” ์ƒํ™ฉ์—์„œ๋Š” ํšจ์œจ์ ์ด์ง€ ์•Š๋‹ค.
  • ์Šฌ๋ผ์ด์Šค๋ฅผ ํ•ด์„œ ๋ฐ˜๋ณต๋ฌธ์œผ๋กœ ๋Œ์•„์•ผํ•˜๋Š” ๋ฆฌ์ŠคํŠธ์˜ ๊ธธ์ด๋ฅผ ์ค„์ด๋Š” ๊ฒƒ์ด ๊ทธ๋‹ค์ง€ ์‹œ๊ฐ„ ํšจ์œจ์„ ์ค„์—ฌ์ฃผ์ง€๋Š” ์•Š๋Š”๋‹ค.

Leave a comment