-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBonnieAndClyde.c
143 lines (133 loc) · 3.84 KB
/
BonnieAndClyde.c
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
#include<stdarg.h>
//Bonnie and Clyde
//The map is given with Nodes and Edges joining 2 nodes.
//Given the nodes of 2 Person and node of the Meeting place(Sushi Restaurant),
//find whether they will meet at any Node before the Restaurant.
//If so, print NO, else YES.
void main()
{
int edgeCount=0;
int nodeCount=0;
int i=0;
int j=0;
int nodeBonnie=0;
int nodeClyde=0;
int nodeSushi=0;
int indexPathBonnie=0;
int indexPathClyde=0;
int currentBonnieNode=0;
int currentClydeNode=0;
int decider=0;
printf("Enter the Number of Nodes : ");
scanf("%d",&nodeCount);
printf("Enter the Number of Edges : ");
scanf("%d",&edgeCount);
int edgeArray[edgeCount*2]; //Each edge will be a segment joining 2 nodes. Thus,2 x edgeCount.
int bonniePathArray[nodeCount]; //Maximum can be through all the nodes so.
int clydePathArray[nodeCount];
for(i=0;i<nodeCount;i++)
{
bonniePathArray[i]=0;
clydePathArray[i]=0;
}
for(i=0;i<edgeCount;i++)
{
printf("Enter the Vertex Points of Edge %d :",i+1);
scanf("%d %d",&edgeArray[j],&edgeArray[j+1]);
j+=2;
}
printf("Enter the Bonnie's Node : ");
scanf("%d",&nodeBonnie);
bonniePathArray[indexPathBonnie]=nodeBonnie;
currentBonnieNode=nodeBonnie;
printf("Enter the Clyde's Node : ");
scanf("%d",&nodeClyde);
clydePathArray[indexPathClyde]=nodeClyde;
currentClydeNode=nodeClyde;
printf("Enter the Sushi Restraunt's Node : ");
scanf("%d",&nodeSushi);
indexPathBonnie=1;
for(i=0;i<(edgeCount*2);i++)
{
if(currentBonnieNode==edgeArray[i])
{
if((i%2)==0) //if its Even, its the Start point, thus the Destination point should be added to the path.
{
bonniePathArray[indexPathBonnie]=edgeArray[i+1];
currentBonnieNode=edgeArray[i+1];
if(edgeArray[i+1]==nodeSushi)
break;
}
else
{
bonniePathArray[indexPathBonnie]=edgeArray[i-1];
currentBonnieNode=edgeArray[i-1];
if(edgeArray[i-1]==nodeSushi)
break;
}
indexPathBonnie++;
}
}
indexPathClyde=1;
for(i=0;i<(edgeCount*2);i++)
{
if(currentClydeNode==edgeArray[i])
{
if((i%2)==0) //if its Even, its the Start point, thus the Destination point should be added to the path.
{
clydePathArray[indexPathClyde]=edgeArray[i+1];
currentClydeNode=edgeArray[i+1];
if(edgeArray[i+1]==nodeSushi)
break;
}
else
{
clydePathArray[indexPathClyde]=edgeArray[i-1];
currentClydeNode=edgeArray[i-1];
if(edgeArray[i-1]==nodeSushi)
break;
}
indexPathClyde++;
}
}
if(indexPathBonnie>indexPathClyde)
{
for(i=0;i<indexPathClyde;i++)
{
for(j=0;j<indexPathBonnie;j++)
{
if(clydePathArray[i]==bonniePathArray[j])
{
printf("YES");
decider=1;
break;
}
}
if(decider==1)
break;
}
}
else
{
for(i=0;i<indexPathBonnie;i++)
{
for(j=0;j<indexPathClyde;j++)
{
if(bonniePathArray[i]==clydePathArray[j])
{
printf("NO");
decider=1;
break;
}
}
if(decider==1)
break;
}
}
if(decider==0)
printf("YES");
}