Nutella3001's blog

By Nutella3001, history, 2 years ago, translation, In English

Statement: We have an array A. Lets take every index i and find L[i] and R[i] — closest left and right index j such that A[j] >= A[i] respectively. Then I state that if for every i in 0..n-1 we sum min(i — L[i], R[i] — i) it will be O(N log N). It`s useful if we fix A[i] as the maximum number of segment and if the length of segments is fixed, we can naively iterate over all such segments.

Proof: Lets look at what we actually do. We iterate over i and look at L[i] and R[i] and count the elements to the closest side. If i — L[i] < R[i] — i, lets add segments (i — 1, i), (i — 2, i), ... , (L[i] + 1, i). Else lets add segments (i, i + 1), (i, i + 2), ... (i, R[i] — 1). In all of these segments let the endpoint that is equal to i be the red color and to the other endpoint to be the black color. Obviously this sum we are trying to prove is the number of segments = number of black points. Lets for every i calculate the maximum number of times that it can be the black end of segment. Let index j be the corresponding red end of such segment. I will prove for j > i, because for j < i its symmetrical. Lets take maximum j > i such that j can be red end of this segment. Then A[j] > A[j — 1] and A[j] > A[j — 2] ... A[j] > A[i]. So now lets take second maximum j such than j can be red end of this segment. Lets call the maximum j j1, second maximum j2. Notice that j2 — i <= j1 — j2. Because otherwise we wouldn`t take j2 with i, consequently 2 * j2 <= j1 + i. Consequently the number of such j s is maximum log n.

Usage: The most beautiful usage of this I have recently seen in task https://codeforces.com/problemset/problem/1175/F. I was thinking about hashes, etc. , but there is a solution just fixing the maximum of permutation, let it be A[i], find L[i], R[i] and iterate all segments with length A[i] that include i, but neither L[i] nor R[i]. Notice that it`s even less that described above so we can explicitly get our candidates to be the permutations and their number is <= N log N.

You can also check this task https://codeforces.com/contest/1156/problem/E , the same idea is used there in analysis.

  • Vote: I like it
  • +114
  • Vote: I do not like it

»
2 years ago, # |
  Vote: I like it +39 Vote: I do not like it

Your post is marked as russian so it's not visible on english version

»
2 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Your proof is really hard to understand.

  • »
    »
    2 years ago, # ^ |
      Vote: I like it +3 Vote: I do not like it

    You can also read the analysis of task I attached. Maybe it will help you.

»
2 years ago, # |
Rev. 2   Vote: I like it +3 Vote: I do not like it

Try this problem: https://www.codechef.com/problems/A1016054, I think you'll like it :)

Edit: whoops linked wrong problem

»
2 years ago, # |
Rev. 3   Vote: I like it +24 Vote: I do not like it

Also, I have an easier proof:

Consider the maximum element in the entire array, let it have index $$$i$$$. The answer for index $$$i$$$ is $$$min(i-1,n-i)$$$, (assuming we pad the array with infinity at both ends).

Now recursively solve the problems for all numbers to the left of $$$i$$$, and to the right of $$$i$$$ separately. These subproblems are independent since $$$a[i]$$$ is the maximum in the entire array. So our recurrence for the array looks something like:

$$$T(l,r) = T(l,i-1) + T(i+1,r) + min(i-1, N-i)$$$, where $$$N = r - l + 1$$$.

It is well known that this recurrence is $$$T(1,N) = O(N * log(N))$$$, like you said!

  • »
    »
    2 years ago, # ^ |
      Vote: I like it +8 Vote: I do not like it

    Hm... Okey, for me it wasn't a well-known fact about this recurrence... Could you please prove it?

    • »
      »
      »
      2 years ago, # ^ |
        Vote: I like it +12 Vote: I do not like it

      Think about the "small to large" merging trick that you gets you the $$$O(N * log(N))$$$ runtime on DSU and tree problems.

      We have a tree here, but it's a recursion tree! Think about the recursion in reverse, and merging the 2 child subproblems in the recursion together. If we do it "small to large" style, we do $$$O(min(i-1, N-i))$$$ work, which is what we have in the recurrence. It's the exact same thing, so it's $$$O(N * log(N))$$$ also!

  • »
    »
    2 years ago, # ^ |
      Vote: I like it +11 Vote: I do not like it

    I understood how to prove it. It's literally easier than my proof. I will write it here in case someone needs.

    We actually have that our recurrence depends only on length of array. So actually if we have array of length N it divides into two arrays of sizes l and r, without losing of generality lets suppose that l <= r. Then actually our reccurence is F(n) = F(l) + F(r) + l where l + r = n and l <= r

    Then lets use induction. Imagine F(l) <= l log l and F(r) <= r log r. Lets prove that F(n) <= n log n. We actually have that F(n) <= l log l + r log r + l = l(log(2*l)) + r log r <= l log n + r log r <= l log n + r log n <= (l+r)log n = n log n.

»
2 years ago, # |
  Vote: I like it +8 Vote: I do not like it

A harder problem that requires the same technique: Tsetso Subarrays.

Include it in the blog if you liked it.