Loading environment...
Problem Description
You have to determine if it is possible to escape from a room. The room is an -by- grid with each position (cell) containing a positive integer. The rows are numbered and the columns are numbered . We use to refer to the cell in row and column .
You start in the top-left corner at and exit from the bottom-right corner at . If you are in a cell containing the value , then you can jump to any cell satisfying . For example, if you are in a cell containing a 6, you can jump to cell .
Note that from a cell containing a 6, there are up to four cells you can jump to: , , , or . If the room is a 5-by-6 grid, there isn't a row 6 so only the first three jumps would be possible.
Input Specification
The first line of the input will be an integer (). The second line of the input will be an integer (). The remaining input gives the positive integers in the cells of the room with rows and columns. It consists of lines where each line contains positive integers, each less than or equal to , separated by single spaces.
Output Specification
Output yes if it is possible to escape from the room. Otherwise, output no.
Sample Input
Output for Sample Input
Explanation of Output for Sample Input
Starting in the cell at which contains a 3, one possibility is to jump to the cell at . This cell contains an 8 so from it, you could jump to the cell at . This brings you to a cell containing 12 from which you can jump to the exit at . Note that another way to escape is to jump from the starting cell to the cell at to the cell at to the exit.
Notes
The online grader begins by testing submissions using the sample input. All other tests are skipped if the sample test is not passed. If you are only attempting the first three subtasks (the first 7 marks), then you might want to handle the specific values of the sample input as a special case.
For the final subtask (worth 2 marks), if you are using Java, then Scanner will probably take too long to read in the large amount of data. A much faster alternative is BufferedReader.
No comments yet. Be the first to comment!