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