Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1.  
  2.  
  3.  
  4. Problem B: Minesweeper
  5.  
  6.  
  7.  
  8. The Problem
  9.  
  10. Have you ever played Minesweeper? It's a cute little game which comes within a certain Operating System which name we can't really remember. Well, the goal of the game is to find where are all the mines within a MxN field. To help you, the game shows a number in a square which tells you how many mines there are adjacent to that square. For instance, supose the following 4x4 field with 2 mines (which are represented by an * character):
  11. *...
  12. ....
  13. .*..
  14. ....
  15.  
  16. If we would represent the same field placing the hint numbers described above, we would end up with: *100
  17. 2210
  18. 1*10
  19. 1110
  20.  
  21. As you may have already noticed, each square may have at most 8 adjacent squares.
  22. The Input
  23.  
  24. The input will consist of an arbitrary number of fields. The first line of each field contains two integers n and m (0 < n,m <= 100) which stands for the number of lines and columns of the field respectively. The next n lines contains exactly m characters and represent the field. Each safe square is represented by an "." character (without the quotes) and each mine square is represented by an "*" character (also without the quotes). The first field line where n = m = 0 represents the end of input and should not be processed.
  25.  
  26. The Output
  27.  
  28. For each field, you must print the following message in a line alone:
  29. Field #x:
  30. Where x stands for the number of the field (starting from 1). The next n lines should contain the field with the "." characters replaced by the number of adjacent mines to that square. There must be an empty line between field outputs.
  31. Sample Input
  32.  
  33.  
  34. 4 4
  35. *...
  36. ....
  37. .*..
  38. ....
  39. 3 5
  40. **...
  41. .....
  42. .*...
  43. 0 0
  44.  
  45.  
  46.  
  47.  
  48. Sample Output
  49.  
  50.  
  51. Field #1:
  52. *100
  53. 2210
  54. 1*10
  55. 1110
  56.  
  57. Field #2:
  58. **100
  59. 33200
  60. 1*100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement