Editorial for Sasha y la merienda


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 i, simular el proceso de comer frutas, es decir, buscar el mayor j tal que la suma de las frutas es menor o igual a C, y al final reportar la máxima cantidad de frutas que se pudieron comer, o sea, el máximo (j-i+1) para algún i.

Complejidad O(n^2).


Comments

There are no comments at the moment.