recategorized by
786 views
6 votes
6 votes

Let $G=(V, E)$ be an undirected simple graph, and $s$ be a designated vertex in $G.$  For each $v\in V,$ let $d(v)$ be the length of a shortest path between $s$ and $v.$ For an edge $(u,v)$ in $G,$ what can not be the value of $d(u)-d(v)?$

  1. $2$
  2. $-1$
  3. $0$
  4. $1$
recategorized by

3 Answers

1 votes
1 votes

Here $d(u)=2$  and $d(v) = 1$ so $d(u) - d(v) = 2-1 =1 $ so option $B$ eliminated.

here $d(u) = d(v) = 1 $ so $d(u) - d(v) = 0 $ so option $C$ eliminated.

Here $d(u)=1$  and $d(v) = 2$ so $d(u) - d(v) = 1-2 =-1 $ so option $D$ eliminated.

 

If you look at the above graphs then you would realize that we are just either calculating the shortest path of $s$ from either vertex $v$ or $u$(whichever is the shortest) and then just adding $1$ since both $u$ and $v$ are adjacent to each other so shortest path would increase by just $1$ edge distance.

Hence the difference between $d(u) - d(v)$ can never be greater than $1$.

So Option $A$ is the correct answer.
 

0 votes
0 votes
max difference between d(u) and d(v) is 1. Bcz if d(u) not equal to d(v), then d(u)=d(v)+1( for edge u-v). As this is undirected graph, we do not need to think about direction. hence option A is the correct answer.
Answer:

Related questions

1 votes
1 votes
2 answers
2
gatecse asked Sep 13, 2019
649 views
Let $G$ be a simple graph on $n$ vertices.Prove that if $G$ has more than $\binom{n-1}{2}$ edges then $G$ is connected.For every $n>2$, find a graph $G_{n}$ which has exa...
4 votes
4 votes
4 answers
4
gatecse asked Sep 13, 2019
1,060 views
Which of the words below matches the regular expression $a(a+b)^{\ast}b+b(a+b)^{\ast}a$?$aba$$bab$$abba$$aabb$