
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Program to find out the minimum moves in a snakes and ladders game in Python
Suppose we are playing a game of snakes and ladders. We have a condition that we can roll any number that we can like on a dice. We start from position 0 and our destination is position 100, and we roll the dice several times to reach the destination. We must find out the least number of dice rolls required to reach the destination if we are provided with the position of the snakes and ladders on the board.The arrays snakes and ladders represent the positions of snakes and ladders in the board and each entry in the arrays contains a start value and an end value of a snake or a ladder on the board.
So, if the input is like ladders = [(11, 40), (37,67),(47, 73),(15, 72)], snakes = [(90, 12), (98, 31), (85, 23), (75, 42), (70, 18), (49, 47)], then the output will be 8.
The minimum number of moves required is 8 to reach the 100th position on the board given the positions of snakes and ladders.
To solve this, we will follow these steps −
- append the array snakes to array ladders
- edges := a new map
- for each pair f,t in ladders, do
- edges[f] := t
- u := a new set
- v := a new set
- add(1) to v
- m := 0
- while 100 is not present in v, do
- m := m + 1
- w := a new set
- for each f in v, do
- for i in range 1 to 6, do
- n := f + i
- if n is present in edges, then
- n := edges[n]
- if n is present in u, then
- go for next iteration
- add(n) to u
- add(n) to w
- for i in range 1 to 6, do
- v := w
- return m
Example
Let us see the following implementation to get better understanding −
def solve(ladders, snakes): ladders.extend(snakes) edges = {} for f,t in ladders: edges[f] = t u = set() v = set() v.add(1) m = 0 while 100 not in v: m += 1 w = set() for f in v: for i in range(1,7): n = f + i if n in edges: n = edges[n] if n in u: continue u.add(n) w.add(n) v = w return m print(solve([(11, 40), (37,67),(47, 73),(15, 72)], [(90, 12), (98, 31), (85, 23), (75, 42), (70, 18), (49, 47)]))
Input
[(11, 40), (37,67),(47, 73),(15, 72)], [(90, 12), (98, 31), (85, 23), (75, 42), (70, 18), (49, 47)]
Output
8
- Related Articles
- Program to find out the maximum points collectable in a game in Python
- Program to find out the minimum number of moves for a chess piece to reach every position in Python
- Program to find out if we win in a game in Python
- Program to find minimum moves to make array complementary in Python
- Program to find number of expected moves required to win Lotus and Caterpillar game in Python
- Program to find number of moves to win deleting repeated integer game in Python
- Program to find number of possible moves to start the game to win by the starter in Python
- Program to Find Out the Minimum Cost to Purchase All in Python
- Program to Find Out the Number of Moves to Reach the Finish Line in Python
- Program to find minimum difference between largest and smallest value in three moves using Python
- Program to find out the minimum path to deliver all letters in Python
- Program to find out the minimum size of the largest clique in a graph (Python)
- Program to Find Out the Minimum Cost Possible from Weighted Graph in Python
- Program to find out the minimum number of intercountry travels in a road trip in Python
- Program to Find Out the Minimum Parsing Tree in C++
