-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathSnakeAndLadderProblem.cpp
85 lines (58 loc) · 997 Bytes
/
SnakeAndLadderProblem.cpp
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
82
83
84
85
#include<iostream>
#include <queue>
using namespace std;
struct queueEntry
{
int v;
int dist;
};
int getMinDiceThrows(int move[], int N)
{
bool *visited = new bool[N];
for (int i = 0; i < N; i++)
visited[i] = false;
queue<queueEntry> q;
visited[0] = true;
queueEntry s = {0, 0};
q.push(s);
queueEntry qe;
while (!q.empty())
{
qe = q.front();
int v = qe.v;
if (v == N-1)
break;
q.pop();
for (int j=v+1; j<=(v+6) && j<N; ++j)
{
if (!visited[j])
{
queueEntry a;
a.dist = (qe.dist + 1);
visited[j] = true;
if (move[j] != -1)
a.v = move[j];
else
a.v = j;
q.push(a);
}
}
}
return qe.dist;
}
int main()
{
int moves[N];
for (int i = 0; i<N; i++)
moves[i] = -1;
moves[2] = 21;
moves[4] = 7;
moves[10] = 25;
moves[19] = 28;
moves[26] = 0;
moves[20] = 8;
moves[16] = 3;
moves[18] = 6;
cout << "Min Dice throws required is " << getMinDiceThrows(moves, N);
return 0;
}