Post

Programmers_Greedy05 - 구명보트

프로그래머스 - 구명보트 문제 입니다.

1. 문제

https://programmers.co.kr/learn/courses/30/parts/12077


2. 분류 및 난이도

Programmers 문제입니다.
level 2의 문제입니다.


3. 생각한 것들(문제 접근 방법)

  • 퀵소트처럼 맨 뒤와 앞에서 접근하며 담을 수 없는건 한명만 담고 담을 수 있으면 담아버립니다.

4. 접근 방법을 적용한 코드

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
#include <string>
#include <vector>
#include<algorithm>
#include<iostream>
using namespace std;



int solution(vector<int> people, int limit) {
    int answer = 0;
    int exitif = 0;
    sort(people.begin(), people.end());
    int maxn = people.size() - 1;
    int minn = 0;
    while (minn <= maxn)
    {
        if (people[minn] + people[maxn] <= limit)
        {
            ++minn;
            --maxn;
        }
        else
        {
            --maxn;
        }
        answer++;
    }
    
    return answer;
}

5. 결과

This post is licensed under CC BY 4.0 by the author.