When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

AJ__20's blog

By AJ__20, history, 10 months ago, In English

I was given a question with integer array A of size N, And asked to find answer for Q queries. Each query consists of (L, R, Min, Max). One need to find the minimum sum in the given range(L, R) with atleast 'Min' element and atmost 'Max' elements should be in the minimum sum. Constraints : 1 <= N <= 1e5, 1 <= Q <= 1e5, 1 <= Testcases <= 1e5. I tried brute force approach and got TLE. I searched the internet for the optimal approach and couldn't find the answer, so could anyone explain how to approach this problem? Edit : All the queries are available to function as a parameter when the function is invoked.

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
10 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by AJ__20 (previous revision, new revision, compare).

»
10 months ago, # |
  Vote: I like it +4 Vote: I do not like it

Two questions:

  1. Do you mean that we need to choose at least $$$min$$$ elements and at most $$$max$$$ elements from the segment $$$[l, r]$$$?
  2. Can the array contain negative elements?
  • »
    »
    10 months ago, # ^ |
    Rev. 2   Vote: I like it 0 Vote: I do not like it

    (1).We need to choose some elements from the segment [l, r] such that the no.of.elements chosen should be in the range[Min, Max]. Eg: If array A is [5, -2, 10, -4, -11, 15] and Query is (0, 3, 2, 3) L -> 0 (0-based indexing) R -> 3 (0-based indexing) Min -> 2 (you need to pick atleast 2 elements) Max -> 3 (you can pick atmost 3 elements) So if we choose (-11, -4, -2) we will get minimum sum of -17. (2).Yes, the array consists of negative elements.

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

      I think this can be solved by persistant segment tree

»
10 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by AJ__20 (previous revision, new revision, compare).