Please read the new rule regarding the restriction on the use of AI tools. ×

Difficulty interpreting question C. Restore Graph

Revision en1, by et__fpme__, 2020-12-25 13:31:20

Hi,

An old problem from Div2 (237) https://codeforces.me/problemset/problem/404/C asks to construct a graph when distances from a vertex are given.

The solutions and editorial to this problem indicate that we should be searching for nodes that are at dist[u] + 1 for a given node u and there should at least be one such node. But if we have distances = [0, 1, 4], then a tree like this 1-(1)->2-(3)->3 also satisfies the conditions in the question and there is no node at a distance of 2 from 1. Can anyone please help he understand what am I missing here?

Thanks!

Tags #graph, unable to understand

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en4 English et__fpme__ 2020-12-25 13:37:10 11 Tiny change: '\n\nThanks!' -> '\n\nThanks in advance!'
en3 English et__fpme__ 2020-12-25 13:36:48 26 Tiny change: 'Hi,\n\nA prob' -> 'Merry Christmas Everyone!\n\nA prob'
en2 English et__fpme__ 2020-12-25 13:35:52 55 Tiny change: 'at are at dist[u] + 1 for a giv' -> 'at are at ~~~~dist[u] + 1~~~~ for a giv'
en1 English et__fpme__ 2020-12-25 13:31:20 623 Initial revision (published)