Блог пользователя B.i.b.e.r

Автор B.i.b.e.r, история, 9 месяцев назад, По-английски

Hello Everyone, Recently in one of my interview Rounds ,I got asked this question, I just wanted to know is there any optimal way to do this ? in less than 0(nlogn) or 0(n) Complexity

Given an array of Integers(positive and negative) and Target Element K ,you have to find minimum absolute difference between target element and subarray summ. Also there are going to be q queries where each time you will have different K

  • Проголосовать: нравится
  • +8
  • Проголосовать: не нравится

»
9 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

do perfix sum, enumeration "l", Use multiset.lower_bound to find r

O(n log n)

»
9 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by B.i.b.e.r (previous revision, new revision, compare).