Jeddah Municipality has decided to build a network of national hospitals to treat infectious diseases. A special task force is constituted which is tasked to investigate possible locations for these new hospitals. The task force has done its job and come back with a list of potential sites. Each of these hospitals has an associated cost and will provide coverage to some number of nearby districts within Jeddah. We can represent each potential hospital site as having: a name (string), cost to build the hospital (int) and a set of districts to be covered (Set of strings). Jeddah Municipality is interested in providing health care to all, but they do not have funds to build an unlimited number of hospitals. The goal is to provide coverage to as many districts as possible using the available funds. For example, suppose Jeddah Municipality has the following districts: Al-Aziziya, Ar-Rihab, Mosharafa, Al-Faysaliya, Bani Malik, An-Naseem, Al-Balad, Al-Salam, AlMakarona, As-Salmiya, Al-Gozain, Al-Hamdaniya Suppose that these are the possible hospital sites: Site 1: Covers Al-Aziziya, Ar-Rihab, Mosharafa, Al-Faysaliya. Cost: SARs 20,000,000. Site 2: Covers Ar-Rihab, Bani Malik, An-Naseem, Al-Balad. Cost: SARs 50,000,000. Site 3: Covers Al-Balad, Al-Salam, Al-Makarona, As-Salmiya, Al-Gozain. Cost: SARs 40,000,000. Site 4: Covers As-Salmiya, Al-Gozain, Al-Hamdaniya. Cost: SARs 10,000,000. Site 5: Covers Mosharafa, Al-Faysaliya, An-Naseem, Al-Balad. Cost: SARs 30,000,000. Site 6: Covers Al-Balad, Al-Salam, Al-Hamdaniya. Cost: SARs 10,000,000. Site 7: Covers Al-Balad, Mosharafa, Al-Salam, Al-Makarona, As-Salmiya. Cost: SARs 60,000,000. Site 8: Covers Ar-Rihab, Bani Malik, Al-Makarona, As-Salmiya, Al-Balad. Cost: SARs 50,000,000. If you build Site 1 and Site 2, you have provided coverage to Al-Aziziya, Ar-Rihab, Mosharafa, AlFaysaliya, Bani Malik, An-Naseem, and Al-Balad a total of seven districts, at a cost of SARs 70,000,000. (Notice that both Site 1 and Site 2 provide coverage to Ar-Rihab, so even though Site 1 and Site 2 cover four districts each, only seven total districts end up covered). Adding in Site 5 would add in a cost of SARs 50,000,000 without actually providing any new coverage, since all four of the cities it serv

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Jeddah Municipality has decided to build a network of national hospitals to treat infectious
diseases. A special task force is constituted which is tasked to investigate possible locations for
these new hospitals. The task force has done its job and come back with a list of potential sites.
Each of these hospitals has an associated cost and will provide coverage to some number of
nearby districts within Jeddah. We can represent each potential hospital site as having: a name
(string), cost to build the hospital (int) and a set of districts to be covered (Set of strings).
Jeddah Municipality is interested in providing health care to all, but they do not have funds to
build an unlimited number of hospitals. The goal is to provide coverage to as many districts as
possible using the available funds. For example, suppose Jeddah Municipality has the following
districts:
Al-Aziziya, Ar-Rihab, Mosharafa, Al-Faysaliya, Bani Malik, An-Naseem, Al-Balad, Al-Salam, AlMakarona, As-Salmiya, Al-Gozain, Al-Hamdaniya
Suppose that these are the possible hospital sites:
Site 1: Covers Al-Aziziya, Ar-Rihab, Mosharafa, Al-Faysaliya. Cost: SARs 20,000,000.
Site 2: Covers Ar-Rihab, Bani Malik, An-Naseem, Al-Balad. Cost: SARs 50,000,000.
Site 3: Covers Al-Balad, Al-Salam, Al-Makarona, As-Salmiya, Al-Gozain. Cost: SARs 40,000,000.
Site 4: Covers As-Salmiya, Al-Gozain, Al-Hamdaniya. Cost: SARs 10,000,000.
Site 5: Covers Mosharafa, Al-Faysaliya, An-Naseem, Al-Balad. Cost: SARs 30,000,000.
Site 6: Covers Al-Balad, Al-Salam, Al-Hamdaniya. Cost: SARs 10,000,000.
Site 7: Covers Al-Balad, Mosharafa, Al-Salam, Al-Makarona, As-Salmiya. Cost: SARs 60,000,000.
Site 8: Covers Ar-Rihab, Bani Malik, Al-Makarona, As-Salmiya, Al-Balad. Cost: SARs 50,000,000.
If you build Site 1 and Site 2, you have provided coverage to Al-Aziziya, Ar-Rihab, Mosharafa, AlFaysaliya, Bani Malik, An-Naseem, and Al-Balad a total of seven districts, at a cost of SARs
70,000,000. (Notice that both Site 1 and Site 2 provide coverage to Ar-Rihab, so even though
Site 1 and Site 2 cover four districts each, only seven total districts end up covered). Adding in
Site 5 would add in a cost of SARs 50,000,000 without actually providing any new coverage,
since all four of the cities it services are already covered.
Your task is to write a recursive function that takes as input a list of possible hospital sites and
an amount of funds available, and then returns a list of hospitals that should be built to provide
coverage to the maximum number of cities.
It is important to note that multiple hospitals could provide coverage to the same district.
However, when you count up the total number of districts covered, you do not double-count a
district. 

we have to read from input file : 

80000000 8 Site1 Al-Aziziya Ar-Rihab Mosharafa Al-Faysaliya Cost 20000000 Site2 Ar-Rihab Bani-Malik An-Naseem Al-Balad Cost 50000000 Site3 Al-Balad Al-Salam Al-Makarona As-Salmiya Al-Gozain Cost 40000000 Site4 As-Salmiya Al-Gozain Al-Hamdaniya Cost 10000000 Site5 Mosharafa Al-Faysaliya An-Naseem Al-Balad Cost 30000000 Site6 Al-Balad Al-Salam Al-Hamdaniya Cost 10000000 Site7 Al-Balad Mosharafa Al-Salam Al-Makarona As-Salmiya Cost 60000000 Site8 Ar-Rihab Bani-Malik Al-Makarona As-Salmiya Al-Balad Cost 50000000 

and class java of hospital to simplify the process. 

A sample run:
Suppose total available funds (budget) are: SARs 80,000,000. The optimal coverage is [Site 1,
Site 4, Site 5, Site 6] covers 10 districts. 

 

we have to use a recursion in this program  

<<<java code >>>

Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY