...

/

Paths in Maze That Lead to Same Room

Paths in Maze That Lead to Same Room

Try to solve the Paths in Maze That Lead to Same Room problem.

Statement

A maze consists of nn rooms numbered from 1n1 - n, and some rooms are connected by corridors. You are given a 2D integer array, corridors, where corridors[i]=[room1,room2]corridors[i] = [room1, room2] indicates that there is a corridor connecting room1room1 and room2room2, allowing a person in the maze to go from room1room1 to room2room2 and vice versa.

The designer of the maze wants to know how confusing the maze is. The confusion score of the maze is the number of different cycles of length 3.

For example, 12311 → 2 → 3 → 1 is a cycle of length 33, but 12341 → 2 → 3 → 4 and 123211 → 2 → 3 → 2 → 1 are not.

Two cycles are considered to be different if one or more of the rooms visited in the first cycle is not in the second cycle.

Return the confusion score of the maze.

Constraints:

  • 22 \leq n 100\leq 100
  • 11 \leq corridors.length 5×102\leq 5 \times 10^2
  • corridors[i].length =2= 2
  • 1room1i,room2in1 \leq room1_i, room2_i \leq n
  • room1iroom2iroom1_i \neq room2_i
  • There are no duplicate corridors.

Examples

1 / 2

Understand the problem

Let’s take a moment to make sure you’ve correctly understood the problem. The quiz below helps you check if you’re solving the correct problem:

Paths in Maze That Lead to Same Room

1

What’s the correct output for the following inputs?

n =5=5

corridors =[[1,2],[3,2],[4,1],[2,4],[5,1],[5,4]]= [[1,2], [3,2], [4,1], [2,4], [5,1], [5,4]]

A)

2

B)

3

C)

0

D)

4

Question 1 of 30 attempted

Figure it out!

We have a game for you to play. Rearrange the logical building blocks to develop a clearer understanding of how to solve this problem.

Sequence - Vertical
Drag and drop the cards to rearrange them in the correct sequence.

1
2
3
4

Try it yourself

Implement your solution in the following coding playground.

Press + to interact
Java
usercode > PathsInMaze.java
import java.util.*;
public class PathsInMaze {
public static int numberOfPaths(int n, int[][] corridors) {
// Replace this placeholder return statement with your code
return -1;
}
}
Paths in Maze That Lead to Same Room

Access this course and 1200+ top-rated courses and projects.