programmers.co.kr/learn/courses/30/lessons/42885
사람의 무게 배열을 정렬하고, limit를 넘지않게되는 결과를 리턴한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import java.util.Arrays;
class Solution {
public int solution(int[] people, int limit) {
int boat = people.length;
Arrays.sort(people);
int start = 0;
int length = people.length -1;
for (int end = length; end > start; end--) {
if (people[start] + people[end] > limit) {
continue;
}
boat--;
start++;
}
return boat;
}
}
|
cs |
'알고리즘 > Array' 카테고리의 다른 글
가운데 글자 가져오기 (0) | 2020.09.09 |
---|---|
체육복 (0) | 2020.09.06 |
문자열 내 마음대로 정렬하기 (0) | 2020.08.31 |
다음큰 숫자 (0) | 2020.08.30 |
주식가격 (0) | 2020.08.22 |