https://school.programmers.co.kr/learn/courses/30/lessons/17680#qna
from collections import deque
def solution(cacheSize, cities):
cities = [x.lower() for x in cities]
cache = deque()
time = 0
# 캐시 사이즈 0
if cacheSize == 0:
return len(cities) * 5
# 캐시 사이즈 1 이상
for city in cities:
if len(cache) < cacheSize:
if city not in cache:
cache.append(city)
time += 5
else:
time += 1
cache.remove(city)
cache.append(city)
elif len(cache) >= cacheSize:
if city not in cache:
cache.popleft()
cache.append(city)
time += 5
else:
time += 1
cache.remove(city)
cache.append(city)
return time
728x90
반응형
'🔻PS > Programmers' 카테고리의 다른 글
[Programmers] 프로그래머스 비밀지도 Python (0) | 2024.05.14 |
---|---|
[Programmers] 프로그래머스 실패율 Python (0) | 2024.05.14 |
[Programmers] 프로그래머스 귤 고르기 Python (0) | 2024.05.12 |
[Programmers] 프로그래머스 주차 요금 계산 Python (0) | 2024.05.09 |
[Programmers] 프로그래머스 숫자 문자열과 영단어 Python (0) | 2024.05.07 |