def solution(people, limit):
answer, front, back = 0, 0, len(people)-1
people.sort(reverse=True)
while front <= back:
if people[front] + people[back] <= limit:
answer += 1
front += 1
back -= 1
else:
answer += 1
front += 1
return answer
programmers.co.kr/learn/courses/30/lessons/42885
'알고리즘 > 프로그래머스(Python)' 카테고리의 다른 글
그리디 - 조이스틱 / 파이썬 (0) | 2020.11.09 |
---|---|
그래프 - 가장 먼 노드 / 파이썬 (0) | 2020.11.08 |
힙 - 이중우선순위큐 / 파이썬 (0) | 2020.11.06 |
힙 - 디스크 컨트롤러 / 파이썬 (0) | 2020.11.05 |
힙 - 더 맵게 / 파이썬 (0) | 2020.11.05 |