https://programmers.co.kr/learn/courses/30/lessons/42885
참고한 블로그 : https://moonsupport.tistory.com/240
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<int> people, int limit) {
// 오름차순 정렬
sort(people.begin(), people.end());
// 가장 작은 값과 가장 큰 값부터 계산
int low = 0;
int high = people.size() - 1;
int cnt = 0;
// low와 high가 엇갈리면 종료
while (low <= high)
{
// 작은 값 + 큰 값이 limit 이하이면 작은값도 out
if (people[low] + people[high] <= limit)
{
low++;
}
// 큰 값부터 out
high--;
cnt++;
}
return cnt;
}
이번에도 혼자 푸는것에 실패한 그리디 ㅜㅜ
위에 링크한 블로그를 보니 아...퀵소트st다.
저 위에 while문 내부는 아래코드를 좀더 간략하게 한것이다.
// low와 high가 엇갈리면 종료
while (low <= high)
{
// 작은 값 + 큰 값이 limit 이하이면 작은값도 out
if (people[low] + people[high] <= limit)
{
low++;
high--;
cnt++;
}
// 작은 값 + 큰 값이 limit을 넘으면 큰값만 out
else
{
high--;
cnt++;
}
}
vector를 정렬하여,
양 끝에서부터 좁혀온다고 생각하면 되겠다.
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Summer/Winter Coding(~2018) : 스킬트리 (level 2) (c++) (0) | 2020.05.10 |
---|---|
[프로그래머스]해시 : 전화번호 목록 (level 2) (c++) (0) | 2020.05.08 |
[프로그래머스]탐욕법(Greedy) : 조이스틱 (level 2) (c++) (0) | 2020.05.07 |
[프로그래머스]탐욕법(Greedy) : 큰 수 만들기 (level 2)(c++) (0) | 2020.05.06 |
[프로그래머스]완전탐색 : 숫자 야구 (level 2)(c++) (0) | 2020.05.04 |
댓글