uttamkumarreddy123's blog

By uttamkumarreddy123, history, 3 days ago, In English

You are given an array A of size N.

Let B denote the list of all N*(N+1)/2 subarray sums of A sorted in non-increasing order.

Your task is to return the Kth element in B. Since the answer can be very large return it modulo 10+7

1<=N<=10**5 1<=K<=min(N*(N+1)/2,10**5) 1<=a[i]<=10**9

Full text and comments »

  • Vote: I like it
  • -2
  • Vote: I do not like it