이쿠의 슬기로운 개발생활

함께 성장하기 위한 보안 개발자 EverNote 내용 공유

코딩테스트

[프로그래머스][C++] 구명보트

이쿠우우 2022. 4. 15. 19:06
반응형

 

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

 

코딩테스트 연습 - 구명보트

무인도에 갇힌 사람들을 구명보트를 이용하여 구출하려고 합니다. 구명보트는 작아서 한 번에 최대 2명씩 밖에 탈 수 없고, 무게 제한도 있습니다. 예를 들어, 사람들의 몸무게가 [70kg, 50kg, 80kg, 5

programmers.co.kr

 



글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...


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

using namespace std;

int solution(vector<int> people, int limit) {
    int answer = 0;
    
    sort(people.begin(), people.end());    
    
    int checkSize = people.size();
    for(int k=0; k < checkSize; k++){
        
        int standard = people[k];
        
        for(int i = checkSize -1; i >=0; i-- ){
            
            int addResult = standard + people[i];
            
            if(i == k){
                answer++;    
                checkSize--;
                break;
            }            
            else if(addResult <= limit){
                answer++;   
                checkSize--;
                break;
            }
            else{
                answer++;
                checkSize--;                
            }
        }
    }    
    return answer;
}

 

 

아래 답은 효율성 테스트 1,2,3,4,5 에서 떨어진 풀이임...

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

using namespace std;

int solution(vector<int> people, int limit) {
    int answer = 0;
    
    sort(people.begin(), people.end());    
    
    while(people.size() != 0){
        
        int standard = people[0];
        
        for(int i = people.size() -1; i >=0; i-- ){
            
            if(i == 0){
                answer++;
                people.erase(people.begin());
                break;
            }
            
            int addResult = standard + people[i];
            
            if(addResult <= limit){
                answer++;
                people.erase(people.begin()+i);
                people.erase(people.begin());
                break;
            }            
        }
    }    
    return answer;
}




꾸준히 하다보면 실력이 늘겠지..

반응형