Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A group of friends is going on holiday together. They have come to... Please help in java A group of friends is going on holiday

A group of friends is going on holiday together. They have come to... Please help in java

image text in transcribed

A group of friends is going on holiday together. They have come to a meeting point (the start of the journey) using N cars. There are P[K] people and S[K] seats in the K-th car for K in range [O..N-1). Some of the seats in the cars may be free, so it is possible for some of the friends to change the car they are in. The friends have decided that, in order to be ecological, they will leave some cars parked at the meeting point and travel with as few cars as possible. Write a function: class Solution { public int solution(int[] P, int[] S); } that, given two arrays P and S, consisting of N integers each, returns the minimum number of cars needed to take all of the friends on holiday. Examples: 1. Given P = [1, 4, 1) and S = [1, 5, 11, the function should return 2. A person from car number 0 can travel in car number 1 instead. This way, car number 0 can be left parked at the meeting point. 2. Given P = [4, 4, 2, 4) and S = [5, 5, 2, 5), the function should return 3. One person from car number 2 can travel in car number 0 and other person from car numb 2 can travel in car number 3. 3. Given P = [2, 3, 4, 2] and S = [2, 5, 7, 2], the function should return 2. Passengers from car number 0 can travel in car number 1 and passengers from car number 3 can travel in car number 2. Write an efficient algorithm for the following assumptions: N is an integer within the range (1..100,000); each element of arrays P and S is an integer within the range [1..9]; every friend had a seat in the car they came in; that is, P[K]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Time Series Databases New Ways To Store And Access Data

Authors: Ted Dunning, Ellen Friedman

1st Edition

1491914726, 978-1491914724

More Books

Students also viewed these Databases questions