-
[프로그래머스] 17680번: 캐시(Python, deque)Algorithm PS👩🏻💻/프로그래머스 2024. 4. 19. 02:49
문제
https://school.programmers.co.kr/learn/courses/30/lessons/17680
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
풀이
처음엔 아래와 같이 직접 cacheSize를 측정했는데,,
deque([], maxlen=3) 처럼 정의하면 append 했을때 maxlen 사이즈를 넘어가면 알아서 왼쪽 원소를 pop한 후 append 한다.from collections import deque def solution(cacheSize, cities): answer = 0 n = len(cities) q = deque([]) city_name = {} if not cacheSize: answer = len(cities) * 5 else: for idx in range(n): city = cities[idx].lower() find_flag = False # 있는지 없는지 확인 for j in range(len(q)): if city == q[j][1]: q[j][0] = idx find_flag = True answer += 1 if not find_flag: # 캐시에 없는 경우 if len(q) == cacheSize: # 캐시 사이즈가 찬 경우 q = deque(sorted(q)) q.popleft() # 캐시 사이즈 안찬 경우 q.append([idx, city]) city_name[city] = idx answer += 5 return answer
'Algorithm PS👩🏻💻 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 12987번: 숫자게임(Python) (0) 2024.05.23 [프로그래머스] 두 정수 사이의 합(Python) (0) 2023.05.23 [프로그래머스] 나누어 떨어지는 숫자 배열(Python) (0) 2023.05.23 [프로그래머스] 기사단원의 무기(Python) (0) 2023.05.10 [프로그래머스] 개인정보 수집 유효기간(Python) (2) 2023.05.10