1 1 vote Suppose the input directed graph $G(V,E)$ is a DAG. For an edge $(u,v)\in E$, which of the following will NEVER be correct in DFS discovery/finish times?$d[u] < d[v] < f[v] < f[u]$ $d[v] < d[u] < f[u] < f[v]$ $d[u] < f[u] < d[v] < f[v]$ $d[v] < f[v] < d[u] < f[u]$ Algorithms goclasses gate2026_cs_set1_memorybased algorithms graph-algorithms depth-first-search multiple-selects two-marks + – GO Classes 431 views answer comment Share Follow Print See 1 comment 1 1 comment reply Complete_Analyzer commented Feb 15 reply Follow flag 2 Mark 0 0 replyShare Please log in or register to add a comment.
0 0 votes u vertex finishing time is always greater than v finishing time , so b and c options are never be correct Purvi_Jain 1 answered Jul 2 Purvi_Jain 1 comment Share Follow 0 reply Please log in or register to add a comment.