Editorial for Subarreglo MinMax


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

Sea vmin y vmax el valor del menor y el mayor elemento del arreglo respectivamente. Si vmin == vmax, entonces la respuesta es 1. De lo contrario iteramos desde la primera posicion llevando pmin y pmax el último índice en que aparecieron el menor y el mayor elemento respectivamente. Mientras iteramos en el i-ésimo elemento si este es igual a vmax (vmin) entonces consideramos para la solución i - pmin + 1 (i - pmax + 1). Finalmente imprimimos la menor de las posibilidades. Complejidad O(N).


Comments

There are no comments at the moment.