mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
24 lines
494 B
Java
24 lines
494 B
Java
import java.util.Arrays;
|
|
|
|
class Solution {
|
|
public int numRescueBoats(int[] people, int limit) {
|
|
Arrays.parallelSort(people);
|
|
|
|
int counter = 0;
|
|
|
|
int left = 0, right = people.length - 1;
|
|
while (left <= right && left < people.length && right >= 0) {
|
|
++counter;
|
|
|
|
// they both fit
|
|
if (left < right && people[left] + people[right] <= limit) {
|
|
++left;
|
|
}
|
|
|
|
// the heaviest person is always included
|
|
--right;
|
|
}
|
|
|
|
return counter;
|
|
}
|
|
}
|