-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpossible_paths.cpp
97 lines (75 loc) · 2.13 KB
/
possible_paths.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
86
87
88
89
90
91
92
93
94
95
96
97
#include <bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(false), cin.tie(0), cout.tie(0);
#define ll long long
#define uli unsigned long int
class Util {
public:
template <typename T> void printSet(const set<T> &s) {
for (const auto &element : s) {
cout << element << " ";
}
cout << endl;
}
template <typename T> void printVector(const vector<T> &v) {
for (const auto &element : v) {
cout << element << " ";
}
cout << endl;
}
template <typename T> void print2DVector(const vector<vector<T>> &vec) {
for (const auto &row : vec) {
for (const auto &element : row) {
cout << element << " ";
}
cout << endl;
}
}
};
Util util;
// task is to find the number of ways to reach from start to destination
class Solution {
public:
int solveUtil(vector<vector<int>> &adj, int curr, int src, int dest,
vector<bool> &visited) {
if (curr == dest) {
return 1;
}
int nCurr = curr == -1 ? src : curr;
visited[nCurr] = true;
int ans = 0;
for (int val : adj[nCurr]) {
if (!visited[val]) {
ans += solveUtil(adj, val, src, dest, visited);
}
}
visited[nCurr] = false;
return ans;
}
int possible_paths(vector<vector<int>> edges, int n, int src, int dest) {
vector<vector<int>> adj(n);
for (const auto pr : edges) {
adj[pr[0]].push_back(pr[1]);
}
vector<bool> visited(n, false);
return solveUtil(adj, src, src, dest, visited);
;
}
};
Solution sol;
int main() {
vector<vector<int>> edges = {{0, 1}, {0, 3}, {0, 2},
{2, 0}, {2, 1}, {1, 3}};
int n = 4;
int start = 0;
int destination = 3;
int res = sol.possible_paths(edges, n, start, destination);
cout << "\n res : " << res << endl;
return 0;
}
auto init = []() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
return 'c';
}();