Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a C++ program called coin_collection.cpp to collect maximum number of coins on an n x m board with inaccessible cells . The program should

Write a C++ program called coin_collection.cpp to collect maximum number of coins on an n x m board with inaccessible cells.

The program should ask a user for a text filename to read a 2-D array of a sequence of numbers. In the array, 1 indicates that theres a coin on the cell, while 0 means no coin. A cell with the number 2 indicates that the cell is not accessible. The program should display maximum possible coins and path to collect it. If you have more than one path, you only need to display one. For this program, you can assume that the board size is less than or equal to 25 x 25.

This is a sample run of the program:

$ g++ -o coin_collection coin_collection.cpp

$ ./coin_collection

Enter a file name: ./t1.txt

Max coins: 3

Path:(1,1)->(2,1)->(2,2)->(3,2)->(3,3)->(4,3)->(4,4)

For the sample run, t1.txt has the following context:

4 4

0 2 1 1

0 1 2 1

0 0 1 2

1 2 0 1

The first line (= 4 and 4 in the example) indicates the numbers of rows and columns in the file. One blank space is used to delimiter the data. Note that theres no blank space at the end of each line. In the sample execution, the starting indexes of the path are 1, not 0.

This is another sample run.

$ g++ -o coin_collection coin_collection.cpp

$ ./coin_collection

Enter a file name: ./t2.txt

Max coins: 1

Path:(1,1)->(1,2)->(1,3)->(1,4)->(2,4)

For the sample run, t2.txt has the following context:

2 4

0 1 0 0

1 1 2 0

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

Spatial Databases A Tour

Authors: Shashi Shekhar, Sanjay Chawla

1st Edition

0130174807, 978-0130174802

More Books

Students also viewed these Databases questions

Question

Has the priority order been provided by someone else?

Answered: 1 week ago

Question

Compare the current team to the ideal team.

Answered: 1 week ago