Reading through this DP blogpost by zscoder — https://codeforces.net/blog/entry/47764
In the "open and close interval" section, the blogpost explains this problem — https://codeforces.net/contest/626/problem/F
The explanation says -
"Suppose there are j open sets. When we add a[i], the sum a[i] - a[i - 1] will contribute to each of the j open sets, so we increase the current imbalance by j(a[i] - a[i - 1])."
But doesn't this imply that all j open sets contain a[i-1]?
Shouldn't the correct net increase in imbalance be - sum(a[i] - max(cur_open_set)) // (assuming we somehow tracked the max for each cur_open_set)
But for my equation to be equal to j*(a[i]-a[i-1]), all the current open sets would need to have a[i-1] in them. So how does this work?
Basically I'm unable to understand the transition of the 3rd state in the DP equation in the blogpost. If anyone can help clarify my misunderstanding or explain it in a different way, I'd be grateful!
Please help! Thanks!