Snake and Ladder Problem Statement

Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, find the minimum number of dice throws required to reach the last cell. The dice has six faces, and you control its outcome.

Example:

For a (6 x 6) board, numbers are placed as shown in the image:

6*6 Board

Explanation:

You start on square 1 at the last row and first column. On square 'X', you can opt to move to a square 'S' being 'X+1', 'X+2', ..., 'X+6', as long as 'S' is ≤ N*N. If 'S' hosts a snake or ladder, you are transported to board[i][j]. A board square at [i][j] encases "Snake or Ladder" mechanics if board[i][j] ≠ -1.

Input:

N
board[0][0] board[0][1] ... board[0][N-1]
board[1][0] board[1][1] ... board[1][N-1]
...
board[N-1][0] board[N-1][1] ... board[N-1][N-1]

Output:

Minimum number of throws to reach the last board cell, or -1 if unreachable.

Constraints:

  • 1 <= N <= 102
  • 1 <= board[i][j] <= N*N or board[i][j] = -1

Note:

  • '-1' signifies absence of any Snake or Ladder on the square.
  • Snakes and Ladders can only be utilized once per move. Moving from one to the start of another does not continue your journey.
AnswerBot
4mo

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

  • Start from the bottom left cell and move according to dice outcomes (1-6).

  • Utilize snakes and ladder...read more

Help your peers!
Select
Add answer anonymously...

Cisco Software Developer interview questions & answers

A Software Developer was asked 1w agoQ. What is Java?
A Software Developer was asked 8mo agoQ. Write a program to convert a 24-hour time input into AM/PM format.
A Software Developer was asked 10mo agoQ. You are given two non-empty linked lists representing two non-negative integers....read more

Popular interview questions of Software Developer

A Software Developer was asked 8mo agoQ1. Write a program to convert a 24-hour time input into AM/PM format.
A Software Developer was asked 11mo agoQ2. You are given two non-empty linked lists representing two non-negative integers....read more
A Software Developer was asked 12mo agoQ3. What are OOPS concepts? Explain.
Cisco Software Developer 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