Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Give a linear-time algorithm for the following task.
Input: A directed acyclic graph G

Does G contain a directed path that touches every vertex exactly once?

Short Answer

Expert verified

Yes, a directed acyclic graph contains a directed path that touches every vertex exactly once in linear-time.

Step by step solution

01

Step 1:

DAG (directed acyclic graph) is a graph which contain directed edges between all the vertices and they are not contain any cycle in graph. This type of graph are called directed acyclic graph.

And G contain a directed path that touches every vertex exactly once, Where G is the graph with no of vertex and edges in it.

The path that touches every vertex exactly once is known as Hamiltonion path.

This algorithm is also shown by topologically ordering the vertices in which traversing the directed acyclic graph in order to get a topological order in a way that the output in decreasing order of post number.

It is also called as backtracking approach.

This is the NP hard problem.

And the theorem is proved by topological sorting

The topological sorting is the traversing of directed acyclic graph in order to get a topological order in a way that the output in decreasing order of post number.

Some properties ofTopological sorting are as follows:

1). The topological orderings is basically a linear ordering of graph if u and v are the vertices of graph there u must be comes before v.

2). It must be a DAG (directed acyclic graph).

3). The given graph should be directed acyclic graph with no cycle.4). Every directed acyclic graph must contain at least one topological ordering.

02

Explanation of algorithm.

As given in the question a directed acyclic graph G contain a directed path that touches every vertex exactly once. In first step check whether the graph has cycle or not. If not then proceed for topological ordering.in the above graph it does not contain any cycle in it then proceed it to the next step.

Now find out the node with indegree zero and consider it as source vertex.

Indegree of any node is the number of edges which directs towards it.

So, here has indegree zero and also contain zero as its indegree. Now select anyone from these vertices.

Fig: Directed acyclic graph

Let as its source vertex.After selection ofselect as its next node because its indegree is. Andremoves source nodes from the graph.

So, after removing both of the vertices, it seems thathas degree and has indegree. Than select, up to here the sequence of graph is .

Than eliminate . now the degree of D and E again. Select any one from them. Select D and after that select E. Now the degree of is zero and the degree of G and H is . After selecting eliminate and again look for degree and the degree of both G and H is 0because no other edge is coming on these nodes let select G and after that select H. Similarly apply this method on each and every vertex.

By this it is clear that it traverses all the vertices exactly once and the sequence is ABCDEFGH.

Hence, A linear-time algorithm for which a directed acyclic graph and that graph contain a directed path that touches every vertex exactly once is proved.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

As in the previous problem, you are given a binary tree T=(V,E) with designated root node. In addition, there is an array x[.]with a value for each node in V Define a new array z[.]as follows: for each uโˆˆV,

z[u]=the maximum of the x-values associated with uโ€™s descendants.

Give a linear-time algorithm that calculates the entire z-array.

Question:Undirected vs. directed connectivity.

(a) Prove that in any connected undirected graph G =(V , E)there is a vertexvโˆˆV whose removal leaves G connected. (Hint: Consider the DFS search tree for G.)

(b) Give an example of a strongly connected directed graph G(V ,E)such that, for everyvโˆˆV, removing v from G leaves a directed graph that is not strongly connected.

(c) In an undirected graph with two connected components it is always possible to make the graph connected by adding only one edge. Give an example of a directed graph with two strongly connected components 0 such that no addition of one edge can make the graph strongly connected.

In an undirected graph, the degreeโ€„d(u) of a vertex u is the number of neighbours u is the number of neighbors u has, or equivalently, the number of edges incident upon it. In a directed graph, we distinguish between the indegreeโ€„din(u), which is the number of edges into u, and the outdegreeโ€„dout(u), the number of the edges leaving u.

(a) Show that in an undirected graph, role="math" localid="1658908755010" โˆ‘uevd(u)=2|E|

(b) Use part (a) to show that in an undirected graph, there must be an even number of vertices whose degree is odd.

(c) Does a similar statement hold for the number of vertices with odd indegree in a directed graph?

In the 2SAT problem, you are given a set of clauses, where each clause is the disjunction (OR) of two literals (a literal is a Boolean variable of or the negation of a Boolean variable). You are looking for a way to assign a valuetrueorfalseto each of the variables so that all clauses are satisfied- that is, there is at least one true literal in each clause. For example, hereโ€™s an instance of 2SAT:

x1โˆจx2ยฏโˆงx1ยฏโˆจx3ยฏโˆงx1โˆจx2โˆงx3ยฏโˆจx4โˆงx1ยฏโˆจx4

This instance has a satisfying assignment: set x1,x2,x3, and x4 totrue, false, false,andtrue,respectively.

  1. Are there other satisfying truth assignments of this 2SAT formula? If so, find them all.
  2. Give an instance of 2SAT with four variables, and with no satisfying assignment.

The purpose of this problem is to lead you to a way of solving 2SAT efficiently by reducing it to the problem of finding the strongly connected components of a directed graph. Given an instance l of 2SAT with n variables and m clauses, construct a directed graph GI=V,E as follows.

  • GIhas 2nnodes, one for each variable and its negation.
  • GIhas 2m edges: for each clause ฮฑโˆจฮฒof l (where ฮฑ,ฮฒare literals), G1has an edge from the negation of ฮฑ to ฮฒ, and one from the negation ofฮฒ to ฮฑ.

Note that the clause ฮฑโˆจฮฒis equivalent to either of the implications ฮฑยฏโ‡’ฮฒ or ฮฒยฏโ‡’ฮฑ. In this sense, data-custom-editor="chemistry" GI records all implications in l .

(C). Carry out this construction for the instance of 2SAT given above, and for the instance you constructed in (b).

(d). Show that if GI has a strongly connected component containing both x and Xยฏ for some variable x , then l has no satisfying assignment.

(e). Now show the converse of (d): namely, that if none of GIโ€™s strongly connected components contain both a literal and its negation, then the instance l must be satisfiable.(Hint: Assign values to the variables as follows: repeatedly pick a sink strongly connected component of GI. Assign valuetrueto all literals in the sink, assignfalseto their negations, and delete all of these. Show that this ends up discovering a satisfying assignment.)

(f). Conclude that there is a linear-time algorithm for solving 2SAT.

Let S be a finite set. A binary relation on S is simply a collection R of ordered pairs(x,y)โˆˆSร—S. . For instance, S might be a set of people, and each such pair (x,y)โˆˆR might mean โ€œ x knows y โ€.

An equivalence relationis a binary relation which satisfies three properties:

  • Reflexivity: localid="1659006645990" (x,y)โˆˆR for all XโˆˆS
  • Symmetry: If (x,y)โˆˆR then (y,x)โˆˆR
  • Transitivity: if (x,y)โˆˆR and (y,z)โˆˆR then localid="1659006784500" (x,Z)โˆˆR

For instance, the binary relation โ€œhas the same birthday asโ€ is an equivalence relation, whereas โ€œis the father ofโ€ is not, since it violates all three properties.

Show that an equivalence relation partition set S into disjoint groups S1,S2,โ€ฆ,Sk (in other words, S=S1โˆชS2โˆชโ€ฆโˆชSkandSiโˆฉSj=ฯ•foralliโ‰ j ) such that:

  • Any two members of a group are related, that is, (x,y)โˆˆR for any localid="1659006702579" (x,y)โˆˆSi, for any i .
  • Members of different groups are not related, that is, for all iโ‰ j, for all localid="1659006762355" xโˆˆSi andyโˆˆSi, we have (x,Z)โˆˆR.

(Hint: Represent an equivalence relation by an undirected graph.)

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free