programmers_구명보트_java

2023. 4. 3. 11:23Algorithm/Programmers

728x90

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

 

프로그래머스

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

programmers.co.kr

import java.util.*;

class Solution {
    public int solution(int[] people, int limit) {
        int answer = 0;
        
        int peopleNum = people.length;
        int[] weightSum = new int[peopleNum];
        
        Arrays.sort(people);
        
        int escapePeople = 0; // 탈출한 사람
        int left = 0; // 가벼운 사람
        int right = peopleNum -1; // 무거운 사람
        
        while(left < right){ 
            if(people[right] <= limit/2) break; // 가장 무거운 사람이 limit/2 보다 작거나 같으면 나머지는 모두 2명씩 탈출 가능
            if(people[left] + people[right] <= limit){ // 가장 가벼운 + 가장 무거운 // 2사람 탐승 가능한 경우               
                left++;
                right--;
                escapePeople += 2;
            }else{
                right--;
                escapePeople+= 1;
            }
            answer++;
        }
        answer += Math.ceil((peopleNum - escapePeople) / 2.0); // 남은 사람은 모두 2명씩 탈출 가능
        return answer;
    }
}