상세 컨텐츠

본문 제목

[Level2.] 구명보트 C++

C++/Programmers

by J2on 2024. 2. 4. 00:49

본문

<< 문제 >>

https://school.programmers.co.kr/learn/courses/30/lessons/42885

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

잠깐 생각해보면

 

만약 보트를 둘이 같이 탄다고 했을 때, 가장 합리적인건  < min , max > 조합으로 짜는거겠죠.

 

그걸 이용하면 쉽게 풀 수 있습니다. 

 

 

<< 코드 >>

#include <string>
#include <algorithm>
#include <vector>

using namespace std;

int solution(vector<int> people, int limit) {
    int answer = 0;

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

 

 

<< 깃헙 >>

https://github.com/J2on/StudyAlgorithm_Part2/tree/main/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4/2/42885.%E2%80%85%EA%B5%AC%EB%AA%85%EB%B3%B4%ED%8A%B8

'C++ > Programmers' 카테고리의 다른 글

[Level2.] 광물 캐기 C++  (0) 2024.02.05
[Level2.] 귤 고르기 C++  (0) 2024.02.04
[Level1.] 개인정보 수집 유효기간 C++  (0) 2024.02.03
[Level2.] 주식가격 C++  (0) 2023.07.12
[Level2.] 올바른 괄호 C++  (0) 2023.07.11

관련글 더보기

댓글 영역