Question: ** code JAVA language** ** code JAVA language** ** code JAVA language** ** code JAVA language** ** code JAVA language** ** code JAVA language** A

 ** code JAVA language** ** code JAVA language** ** code JAVAlanguage** ** code JAVA language** ** code JAVA language** ** code JAVA

** code JAVA language** ** code JAVA language** ** code JAVA language** ** code JAVA language** ** code JAVA language** ** code JAVA language**

A group of K persons (K > 1) want to cross a bridge from East to West during the night. The persons that are crossing the bridge must use a flashlight. There is only one flashlight. The bridge is very narrow and allows two persons to cross it at the same time at most. Two persons go from east to west and one person returns with the flashlight from west to east. If the two persons are crossing the bridge together, they are crossing it at the speed of the slower one. These people are trying to cross the bridge as quickly as possible. Use 3 search strategies (UCS, IDS and A*) to find the best order for these persons to cross the bridge. Input file: 1) C, number of test case 2) For each test case: a. K, number of people b. A list of K numbers, showing the time required by each person to pass to the other side. Output: Your program should printout the following information for each search strategy: 1) Sequence of trips taken by the group along with direction of each trip for each strategy (solution) 2) Total time required to have all K people crossing using each strategy (solution cost) 3) Total number of generated nodes (Search time) for each strategy 4) Maximum number of nodes concurrently stored in the system (Space requirement) for each strategy. Input: 1 3 3, 2,5 Description: There is one test case, C=1 There are three people, K=3. The first person (a) needs 3 (time units) to pass to from one side to the other The second person (b) needs 2 time units The third person (e) needs 5 time units Output: Test case #1: UCS Solution 1. (a,b) move to the west side 2. (b) returns with the flashlight 3. (b,c) move to the west side Solution Cost 10 Search Cost 14 Space Requirement 9

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!