· 문제 설명
무인도에 갇힌 사람들을 구명보트를 이용하여 구출하려고 합니다. 구명보트는 작아서 한 번에 최대 2명씩 밖에 탈 수 없고, 무게 제한도 있습니다. 예를 들어, 사람들의 몸무게가 [70kg, 50kg, 80kg, 50kg]이고 구명보트의 무게 제한이 100kg이라면 2번째 사람과 4번째 사람은 같이 탈 수 있지만 1번째 사람과 3번째 사람의 무게의 합은 150kg이므로 구명보트의 무게 제한을 초과하여 같이 탈 수 없습니다. 구명보트를 최대한 적게 사용하여 모든 사람을 구출하려고 합니다.
사람들의 몸무게를 담은 배열 people과 구명보트의 무게 제한 limit가 매개변수로 주어질 때, 모든 사람을 구출하기 위해 필요한 구명보트 개수의 최솟값을 return 하도록 solution 함수를 작성해주세요.
· 제한 사항
무인도에 갇힌 사람은 1명 이상 50,000명 이하입니다.
각 사람의 몸무게는 40kg 이상 240kg 이하입니다.
구명보트의 무게 제한은 40kg 이상 240kg 이하입니다.
구명보트의 무게 제한은 항상 사람들의 몸무게 중 최댓값보다 크게 주어지므로 사람들을 구출할 수 없는 경우는 없습니다.
· 입출력 예
people | limit | return |
[70, 50, 80, 50] | 100 | 3 |
[70, 80, 50] | 100 | 3 |
· Thinking 1
최대한 100에 가깝게 만들어서 타야겠네..!
ex) people : [10, 30, 80, 70] limit : 100
초기값)
answer = 0;
weight = 0;
index = -1;
0-1)
temp = arr[0]+ arr[1] = 40
temp <= limit ? yes
weight(0) < temp(40) ? yes -> weight(40) = temp, index = 1
0-2)
temp = arr[0] + arr[2] = 90
temp <= limit? yes
weight(40) < temp(90) ? yes -> weight(90) = temp, index = 2;
0-3)
temp = arr[0] + arr[3] = 80
temp <= limit ? yes
weight(90) < temp(80) ? no
answer++;
arr[0], arr[2] = 0 삭제
--> 이때 그럼 인덱스를 기억해둬야함
class Solution {
public int solution(int[] people, int limit) {
int answer = 0;
int weight = 0;
int size = people.length;
int i = 0;
while (i < size) {
int index = -1;
for (int j = i + 1; j < people.length; j++) {
if (people[j] == -1) {
break;
}
int temp = people[i] + people[j];
if (temp <= limit) {
if (weight < temp) {
weight = temp;
index = j;
size--;
}
}
}
if (index != -1) {
people[i] = -1;
}
answer++;
i++;
}
System.out.println(answer);
return answer;
}
}
정확성 : 20.0 ...
· Thinking 2
오름차순으로 people sort 후
첫번째 인덱스 기준으로
기준 인덱스 + 마지막 인덱스 <= 100
-> no : + 그 앞 인덱스.. 이런식으로
import java.util.Arrays;
class Solution {
public int solution(int[] people, int limit) {
int answer = people.length;
int weight = 0;
Arrays.sort(people);
for (int i = 0; i < people.length; i++) {
for (int j = people.length - 1; j > i; j--) {
weight = people[i] + people[j];
if (people[i] != -1 && people[j] != -1 && weight <= limit) {
answer--;
people[j] = -1;
break;
}
}
}
return answer;
}
}
정확성 : 75.0
효율성 : 0.0
이중 포문을 썼더니 효율성 테스트에서 걸리나보다..
· Thinking 3
import java.util.Arrays;
class Solution {
public int solution(int[] people, int limit) {
int answer = people.length;
Arrays.sort(people);
int i = 0;
while (i < people.length) {
for (int j = people.length - 1; j > i; j--) {
if (people[i] != -1 && people[j] != -1 && people[i] + people[j]<= limit) {
answer--;
people[j] = -1;
break;
}
}
i++;
}
return answer;
}
}
while - for 중첩문도 효율성을 통과못함 ㅠ
반복문을 하나로 써야할듯..!
· 완성 코드
mport java.util.Arrays;
class Solution {
public int solution(int[] people, int limit) {
int answer = people.length;
Arrays.sort(people);
int i = 0;
for (int j = people.length - 1; j >= 0; j--) {
if (i == j) break;
if (people[i] + people[j] <= limit) {
i++;
answer--;
}
if (i == j) break;
}
return answer;
}
}
· 문제 출처
https://programmers.co.kr/learn/courses/30/lessons/42885
'Algorithm > Programmers' 카테고리의 다른 글
다리를 지나는 트럭 (0) | 2019.06.04 |
---|---|
기능개발 (0) | 2019.06.04 |
N개의 최소공배수 (0) | 2019.06.04 |
JadenCase 문자열 만들기 (0) | 2019.06.04 |
H-Index (0) | 2019.06.04 |
댓글