Editorial for Puentes


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Author: humbertoyusta

La solución consiste en, para cada arista, probar si el grafo sin esa arista es conexo, para esto podemos armar el grafo de nuevo, sin esta arista, y chequear si es conexo con un dfs, dsu o bfs, complejidad O(m^2).

Existen algoritmos que permiten resolver el problema en O(n+m) pero no son requeridos por los límites del problema.


Comments

There are no comments at the moment.