HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Volumes > Array and Matrices > problem:


51011 - Decoding the Path

Guest
• Review clarifications (14)

Volume problems

• 50499 - Table to Row
• 50823 - Secret Number
• 50853 - Parking Place
• 50496 - Falling Bricks
• 50802 - Comparing Exams
• 50517 - Confusion Matrix
• 50866 - Buy the cheapest
• 50785 - Swimming Contest
• 51011 - Decoding the Path
• 50515 - Lines - Revisited
• 50999 - Overlapping Trips
• 50507 - Sequential Numbers
• 50449 - The biggest result
• 50434 - Row Min Subtraction
• 50442 - Polynomial Addition
• 50869 - Birthday Celebration
• 50870 - ZScore normalization

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Question by Ibrahim Mesecan.

Decoding the Path

Question: You will be given a two dimensional matrix which contains the path from a starting point to the destination. The path starts from 1 and goes to the given destination coordinate by increasing all the time by 1 from one cell to its adjacent. Show the coordinates of the path from start to destination.
Note: 1) Assume that there exists at least one path from start to the destination. 2) There may be many paths from start to destination. You can show any of them. 3) Pay attention that there are also some paths from start which does not lead to destination.

Input specification: You will be given three integers in the beginning:

  • Size of the square matrix (n)
  • x and y coordinates of the destination
where 1 < n ≤ 100 and x and y are between 1 and n. Then, each of the following n lines contains n integers which are between -1 and +2e4.

Output specification: Show series of (x, y) coordinates starting from the 1 reaching to the destination. Place a -1 at the last line.

Sample Input
5 5 5
2 3 4 5 -1
1 -1 -1 6 -1
2 3 4 5 6
-1 4 -1 6 7
-1 5 6 7 8
Sample Output
1 2
1 3
2 3
2 4
2 5
3 5
4 5
5 5
-1



Для отправки решений необходимо выполнить вход.

www.contester.ru