티스토리 뷰
프로그래머스 알고리즘 KIT - 스택/큐
1. 이중루프 시간복잡도 O(n^2) 성능: 메모리: 19.4 MB, 시간: 72.74 ms
from collections import deque
def solution(prices):
prices = deque(prices)
answer= []
while prices:
item = prices.popleft()
count = 0
if not prices:
answer.append(0)
break
for i in prices :
count += 1
if item > i:
break
answer.append(count)
return answer
2. 스택을 이용한 for 루프 1번 실행 성능: 메모리: 19.5 MB, 시간: 27.24 ms
def solution(prices):
answer = [0] * len(prices) # 결과를 저장할 리스트 초기화
stack = [] # 스택 초기화
for i in range(len(prices)):
# 현재 가격이 스택에 저장된 가격보다 작으면
while stack and prices[i] < prices[stack[-1]]:
idx = stack.pop() # 스택에서 인덱스를 꺼냄
answer[idx] = i - idx # 현재 인덱스와 스택 인덱스의 차이를 저장
stack.append(i) # 현재 인덱스를 스택에 추가
# 스택에 남아 있는 인덱스 처리
while stack:
idx = stack.pop()
answer[idx] = len(prices) - 1 - idx
return answer
반응형
'AI > Python' 카테고리의 다른 글
[python] 우선순위 큐(Priority Queue)와 힙(Heap) (1) | 2024.12.27 |
---|---|
[python] 리스트 pop(0)과 dequeue popleft()의 성능차이 (0) | 2024.12.25 |
[python] any, index, pop, 내장 Error (1) | 2024.12.24 |
[python] 내장함수(input, dir), 외장함수(global, os, time, datetime) (0) | 2024.12.23 |
[python] 스택, 큐 (0) | 2024.12.23 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 오픽
- 아침
- 기초
- 뉴스
- llm
- 아침운동
- C언어
- 고득점 Kit
- Ai
- 루틴
- 실기
- IH
- 프로그래머스
- 스크랩
- opic
- 습관
- 영어회화
- 오블완
- 미라클모닝
- SQL
- Python
- 빅데이터 분석기사
- 경제
- 30분
- 갓생
- 다이어트
- ChatGPT
- 티스토리챌린지
- 운동
- 줄넘기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함