Editorial for El Juego de la Etiqueta


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: crolando

Si analizas algunos escenarios del juego notarás que la estrategia más óptima de Bob es siempre de la siguiente forma:

  1. Subir durante algunos pasos (quizás cero).
  2. Ir al vértice más profundo desde ahí.
  3. Quedarse en este vértice hasta el final.

Entonces usando DFS o BFS podemos precalcular la cantidad de pasos que le toma a Bob llegar a cualquier nodo, y en otro arreglo precalcular lo mismo pero para Alice.

Entonces la solución sería el doble (porque el juego se realiza por turnos) del máximo de tiempo que le toma a Alice llegar a un nodo habiendo llegado antes Bob al mismo.

Link del problema en Codeforces


Comments

There are no comments at the moment.