Snake and Ladder Problem Statement

Given a Snake and Ladder Board with 'N' rows and 'N' columns filled with numbers from 1 to N*N starting from the bottom left of the board, and alternating direction each row, determine the minimum number of dice throws required to reach the last cell. You can control the dice outcome, landing between 1 and 6 ahead of your current position. Some squares might contain snakes or ladders which alter your next position.

Input:

The first line of input contains a single integer 'N' representing the number of rows and columns.
The next N lines each contain N integers describing the board configuration.

Output:

The minimum number of throws needed to reach the last cell. Print -1 if it is impossible.

Example:

Input:
3 
-1 1 -1
-1 -1 9
-1 4 -1
Output:
2
Explanation:

Starting on square 1, with control over the dice, you can move to square 2 and take the ladder to 4, then move to square 10 (last cell).

Constraints:

  • 1 <= N <= 10^2
  • 1 <= board[i][j] <= N*N or board[i][j] = -1

Note:

-1 indicates no snake or ladder on that board square. Landing on a square with a snake or ladder moves you to the destination of that snake or ladder, but you do not chain moves beyond that.

AnswerBot
4mo

Find the minimum number of dice throws required to reach the last cell on a Snake and Ladder board.

  • Use Breadth First Search (BFS) to explore all possible paths with minimum dice throws.

  • Keep track of v...read more

Help your peers!
Select
Add answer anonymously...

Microsoft Corporation SDE-2 interview questions & answers

A SDE-2 was asked Q. How would you design a video feed API?
A SDE-2 was asked Q. Given a column number, return its corresponding Excel column address.
A SDE-2 was asked Q. Given a string and a matrix of characters, determine if the string exists in the...read more

Popular interview questions of SDE-2

A SDE-2 was asked Q1. How would you design a video feed API?
A SDE-2 was asked Q2. Given a column number, return its corresponding Excel column address.
A SDE-2 was asked Q3. Given a string and a matrix of characters, determine if the string exists in the...read more
Microsoft Corporation SDE-2 Interview Questions
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+

Reviews

10L+

Interviews

4 Cr+

Salaries

1.5 Cr+

Users

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter
Profile Image
Hello, Guest
AmbitionBox Employee Choice Awards 2025
Winners announced!
awards-icon
Contribute to help millions!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos
Add office benefits
Add office benefits