Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.43 KB

File metadata and controls

34 lines (26 loc) · 1.43 KB

< Previous                  Next >

Related Topics

[Array] [Dynamic Programming]

Hints

Hint 1 Think if y cannot be small. You can solve a query in O(n/y), so if y is large enough, it won't be a problem.
Hint 2 If y is small, like less than B, you can preprocess the answers for all such ys in O(n * B), then answer each such query in O(1).
Hint 3 As you might have already guessed, the optimal value for B is ~sqrt(n).