-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathSnakesLadder.java
More file actions
81 lines (61 loc) · 1.75 KB
/
SnakesLadder.java
File metadata and controls
81 lines (61 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import java.util.*;
public class SnakesLadder
{
// An entry in queue used in BFS
static class qentry
{
int v;
int dist;
}
static int getMinDiceThrows(int move[], int n)
{
int visited[] = new int[n];
Queue<qentry> q = new LinkedList<>();
qentry qe = new qentry();
qe.v = 0;
qe.dist = 0;
visited[0] = 1;
q.add(qe);
while (!q.isEmpty())
{
qe = q.remove();
int v = qe.v;
if (v == n - 1)
break;
for (int j = v + 1; j <= (v + 6) && j < n; ++j)
{
if (visited[j] == 0)
{
qentry a = new qentry();
a.dist = (qe.dist + 1);
visited[j] = 1;
if (move[j] != -1)
a.v = move[j];
else
a.v = j;
q.add(a);
}
}
}
return qe.dist;
}
public static void main(String[] args)
{
int N = 30;
int moves[] = new int[N];
for (int i = 0; i < N; i++)
moves[i] = -1;
// Ladders
moves[2] = 21;
moves[4] = 7;
moves[10] = 25;
moves[19] = 28;
// Snakes
moves[26] = 0;
moves[20] = 8;
moves[16] = 3;
moves[18] = 6;
System.out.println("Min Dice throws required is " +
getMinDiceThrows(moves, N));
}
}