Изменения рейтингов за последние раунды временно удалены. Скоро они будут возвращены. ×

Блог пользователя practicener

Автор practicener, история, 3 года назад, По-английски

I am referring to ->https://codeforces.com/contest/1012/problem/C I could come up with O(n^3) solution-> Let dp[i][j]= minimum cost to build j houses in the first i hills. We iterate over the continuous segments, at the end points of which , we build the houses. That is -> if we are considering a segment 1...........i we can break it as 1......k-1 [ k..........i] However this will not fit in the constraints. The editorial is a bit too hard to understand. Can someone please suggest some way to reduce the complexity to O(n^2) . Thank you

Теги dp, div1
  • Проголосовать: нравится
  • +2
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

You can achieve n^2 by maintaining prefix minimum of previous state in dp .

Also , O(n^3) fits the constraints as well.