반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 파이썬 #zip
- dfs #leetcode #python
- gcd #최대공약수 #백준 #2981 #검문
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- dfs #leetcode #python #graph #그래프
- Python #leetcode #dfs #그래프 #백트래킹
- leetcode #python #dfs #재귀
- dfs #bfs #이진트리 #파이썬 #리트코드
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- 코틀린 #Do it #깡샘 #안드로이드
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- leetcode #subsets #dfs #itertools #python
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- dfs #python #leetcode #combination
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #python #leetcode
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- python #백준 #9375 #패션왕 #신해빈
- dfs #그래프 #graph #python #leetcode #course #schedule
- 아스테리스크 #Asterisk #파이썬
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- dfs #bfs #leetcode #python
- 리트코드 #팰린드롬 #파이썬
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- 2004 #조합 0의 개수 #백준
- final #java #자바 #안드로이드
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode] 121. 주식을 사고팔기 좋은 시점(Best Time to Buy and Sell Stock 본문
Algorithm Study/leetcode
[LeetCode] 121. 주식을 사고팔기 좋은 시점(Best Time to Buy and Sell Stock
오패산개구리 2021. 6. 29. 15:37728x90
반응형
한 번의 거래로 낼 수 있는 최대 이익을 산출하라.
Input: prices = [7,1,5,3,6,4]
Output: 5
Explanation:
Buy on day 2 (price = 1) and sell on day 5 (price = 6), profit = 6-1 = 5. Note that buying on day 2 and selling on day 1 is not allowed because you must buy before you sell.
1. 내가 직접 푼 코드
1
2
3
4
5
6
7
|
class Solution:
def maxProfit(self, prices: List[int]) -> int:
max_profit = []
for i in range(len(prices)-1):
max_profit.append(max(prices[i+1:]) - prices[i])
print(max_profit)
return max(max_profit)
|
cs |
해설:
for문을 돌리면서 현재 인덱스와 그 뒤 인덱스들의 차가 제일 큰 값을 리스트에 넣었다.
그 후 그 리스트에서 제일 큰 값을 뽑아낸다.
나름 괜찮은 풀이 같아서 알아보니 런타임 에러가 뜨더라...
시간 복잡도가 O(n^2)이 넘어간다는 뜻인데
슬라이싱 한 것에 max를 취한 것이 아마 런타임 에러의 문제인 듯싶다.
** 깔끔 답안 **
2. 저점과 현재 값과의 차이 계산
1
2
3
4
5
6
7
8
9
10
11
|
class Solution:
def maxProfit(self, prices: List[int]) -> int:
profit = 0
min_price = sys.maxsize
# 최솟값과 최댓값을 계속 갱신
for price in prices:
min_price = min(min_price, price)
profit = max(profit, price - min_price)
return profit
|
cs |
해설:
for문으로 진행하면서 최솟값이 되는 가격을 따로 저장해 두고
최소 가격과 현재 가격 간의 차이에 max를 취해 profit에 저장한다.
이런 식으로 하면 O(n)에 해결할 수 있어서 런타임 에러가 뜨지 않는다!
만약 쉽게 알고리즘이 떠오르지 않는다면 그래프로 한 번 그려보자.
값을 시각화해보면 어떤 식으로 풀어야 할지 직관이 생긴다고 한다.
출처 : 파이썬 알고리즘 인터뷰 (글 : 박상길 그림 : 정진호) [책만]
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode] 21. 두 정렬 리스트의 병합(Merge Two Sorted Lists) (0) | 2021.07.01 |
---|---|
[LeetCode] 234. 팰린드롬 연결 리스트(Palindrome Linked List) (0) | 2021.06.30 |
[LeetCode] 238. 자신을 제외한 배열의 곱(Product of Array Except Self) (0) | 2021.06.29 |
[LeetCode] 561. 배열 파티션 I(Array Partition I) (0) | 2021.06.29 |
[LeetCode] 15. 세 수의 합(3Sum) (0) | 2021.06.27 |