Interview Question Directed Graph — Doubt
Difference between en3 and en4, changed 40 character(s)
Hi Everyone!↵

I haven't been active lately because of interviews going on. Recently I appeared for Amazon Interview for Internship and there was a problem that I still have doubts with:↵

<spoiler summary="Problem">↵
Given a dictionary of words, find the longest Chain of words↵

A chain is formed when a string's last character is the same as any other string's first character.↵

eg , {abd , csa , cdd , dxd , nmk}↵
Longest Chain : csa->abd->dxd↵
</spoiler>↵

`I confirmed with the interviewer that there is a formation of the cycle in this, he told me that cycle formation is possible and whenever it happens you have to break the chain there since you don't want to repeat the same elements`↵

As you can see the graph is not an unweighted DAG, Hence, the problem became finding acyclic longest chain in a directed cyclic graph.↵

I wasn't able to come with a clear solution (O(n)) because it didn't feel right that how I can take care of cases with a cycle using maybe topological sort? So I wanted to ask what is the best possible complexity answer for this. ↵

Thanks!↵

**UPD:** The problem might not even be of a graph, I have mentioned the original problem in the exact words as by the interviewer, not that you have to follow the graph approach, I just want to find any possible views on this.↵

**UPD2:** Got selected anyway lol :p↵

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en4 English Dsxv 2020-12-01 17:02:05 40 Tiny change: ' this.\n\n' -> ' this.\n\n**UPD2:** Got selected anyway lol :p\n\n'
en3 English Dsxv 2020-11-19 15:33:30 230 Tiny change: ' words as mentioned, not that' -> ' words as by the interviewer, not that'
en2 English Dsxv 2020-11-19 14:30:47 239
en1 English Dsxv 2020-11-19 12:50:31 892 Initial revision (published)