Open In App

Order of indices which is lexicographically smallest and sum of elements is <= X

Last Updated : 08 May, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Given an array arr[] and an integer X, the task is to find the indices such that: 
 

  1. The sum of elements on the found indices is ? X
  2. The number of indices is maximum possible.
  3. The order of indices is lexicographically smallest i.e. {0, 0, 1} is lexicographically smaller than {1, 0, 0}

Note that any index can be chosen more than once.
Examples: 
 

Input: arr[] = {6, 8, 5, 4, 7}, X = 11 
Output: 0 2 
Optimal answer is [0, 2] as it is lexicographically smallest. 
sum of chosen indices A[0] + A[2] = 6 + 5 = 11 which is ? 11. 
Here, [2, 3], [2, 2] or [3, 3] also give the maximum 
number of chosen indices but they are not lexicographically smallest.
Input: arr[] = {9, 6, 8, 5, 7, 4}, X = 35 
Output: 1 3 5 5 5 5 5 5 
 

 

Approach: The problem looks like a variation of dynamic programming but turns out that it can be solved by a simple greedy algorithm.
Let the index that has the first minimum value be m. Then the maximum number of indices done is n = X / A[m]. So ans = [m, m, m, …., m], where the number of m’s is n, is the order of the maximum number of indices chosen, with total sum = n x A[m]. We are also sure that optimal answer has n values in it and not more than that.
Now, we can obtain a lexicographically smaller order with the same number of chosen indices, if we can find an index i which is smaller than m such that we can replace an index of value A[m] by an index of value A[i] without exceeding the sum X, then we can replace the first element in ans by i, making the order lexicographically smaller. To make it as lexicographically as small as possible, we would like the index i as small as possible and, then, we would like to use it as many times as possible.
 

For example, X = 11, A = [6, 8, 5, 4, 7]. 
The minimum value is at index 3 and A[3] = 4. So n = 11 / 4 = 2 and ans = [3, 3] with total sum = 4 x 2 = 8. 
To make it lexicographically smaller, we will check the indices before 3 in order. 
The first one is 6. Since 8 – 4 + 6 = 10 < 11. We have found out a smaller order [0, 3]. 
If we apply 6 again, we would get 10 – 4 + 6 = 12 > 11. So we go ahead to check the next index value 8, which is too large. So we go ahead to check 5. Since 10 – 4 + 5 = 11 <= 11, we find a smaller order [0, 2]. Since there is no room left for replacement, 11 – 11 = 0, we stop here. The final answer is [0, 2]. 
 

Below is the implementation of the above approach: 
 

C++




// C++ implementation of the approach
#include <bits/stdc++.h>
using namespace std;
 
// Function to return the chosen indices
vector<int> solve(int X, vector<int>& A)
{
    int min = INT_MAX;
    int ind = -1;
 
    for (int i = 0; i < A.size(); i++) {
        if (A[i] < min) {
            min = A[i];
            ind = i;
        }
    }
 
    // Maximum indices chosen
    int maxIndChosen = X / min;
 
    vector<int> ans;
 
    if (maxIndChosen == 0) {
        return ans;
    }
 
    for (int i = 0; i < maxIndChosen; i++) {
        ans.push_back(ind);
    }
 
    int temp = maxIndChosen;
    int sum = maxIndChosen * A[ind];
 
    // Try to replace the first element in ans by i,
    // making the order lexicographically smaller
    for (int i = 0; i < ind; i++) {
 
        // If no further replacement possible return
        if (sum - X == 0 || temp == 0)
            break;
 
        // If found an index smaller than ind and sum
        // not exceeding X then remove index of smallest
        // value from ans and then add index i to ans
        while ((sum - A[ind] + A[i]) <= X && temp != 0) {
            ans.erase(ans.begin());
            ans.push_back(i);
            temp--;
            sum += (A[i] - A[ind]);
        }
    }
 
    sort(ans.begin(), ans.end());
 
    return ans;
}
 
// Driver code
int main()
{
    vector<int> A = { 5, 6, 4, 8 };
    int X = 18;
 
    vector<int> ans = solve(X, A);
 
    // Print the chosen indices
    for (int i = 0; i < ans.size(); i++)
        cout << ans[i] << " ";
 
    return 0;
}


Java




// Java implementation of the approach
import java.util.*;
 
class GFG
{
 
// Function to return the chosen indices
static Vector<Integer> solve(int X, Vector<Integer> A)
{
    int min = Integer.MAX_VALUE;
    int ind = -1;
 
    for (int i = 0; i < A.size(); i++)
    {
        if (A.get(i) < min)
        {
            min = A.get(i);
            ind = i;
        }
    }
 
    // Maximum indices chosen
    int maxIndChosen = X / min;
 
    Vector<Integer> ans = new Vector<>();
 
    if (maxIndChosen == 0)
    {
        return ans;
    }
 
    for (int i = 0; i < maxIndChosen; i++)
    {
        ans.add(ind);
    }
 
    int temp = maxIndChosen;
    int sum = maxIndChosen * A.get(ind);
 
    // Try to replace the first element in ans by i,
    // making the order lexicographically smaller
    for (int i = 0; i < ind; i++) {
 
        // If no further replacement possible return
        if (sum - X == 0 || temp == 0)
            break;
 
        // If found an index smaller than ind and sum
        // not exceeding X then remove index of smallest
        // value from ans and then add index i to ans
        while ((sum - A.get(ind) + A.get(i)) <= X && temp != 0)
        {
            ans.remove(0);
            ans.add(i);
            temp--;
            sum += (A.get(i) - A.get(ind));
        }
    }
 
    Collections.sort(ans);
 
    return ans;
}
 
// Driver code
public static void main(String args[])
{
    Integer arr[] = { 5, 6, 4, 8 };
    Vector<Integer> A = new Vector<Integer>(Arrays.asList(arr));
    int X = 18;
 
    Vector<Integer> ans = solve(X, A);
 
    // Print the chosen indices
    for (int i = 0; i < ans.size(); i++)
        System.out.print(ans.get(i)+" ");
}
}
 
/* This code contributed by PrinciRaj1992 */


Python3




# Python3 implementation of the approach
import sys;
 
# Function to return the chosen indices
def solve(X, A) :
 
    minimum = sys.maxsize;
    ind = -1;
     
    for i in range(len(A)) :
        if (A[i] < minimum ) :
            minimum = A[i];
            ind = i;
     
    # Maximum indices chosen
    maxIndChosen = X // minimum ;
     
    ans = [];
     
    if (maxIndChosen == 0) :
        return ans;
         
    for i in range(maxIndChosen) :
        ans.append(ind);
         
    temp = maxIndChosen;
    sum = maxIndChosen * A[ind];
     
    # Try to replace the first element in ans by i,
    # making the order lexicographically smaller
    for i in range(ind) :
         
        # If no further replacement possible return
        if (sum - X == 0 or temp == 0) :
            break;
             
        # If found an index smaller than ind and sum
        # not exceeding X then remove index of smallest
        # value from ans and then add index i to ans
        while ((sum - A[ind] + A[i]) <= X and temp != 0) :
            del(ans[0]);
            ans.append(i);
            temp -= 1;
            sum += (A[i] - A[ind]);
             
    ans.sort();
    return ans;
 
 
# Driver code
if __name__ == "__main__" :
 
    A = [ 5, 6, 4, 8 ];
    X = 18;
 
    ans = solve(X, A);
 
    # Print the chosen indices
    for i in range(len(ans)) :
        print(ans[i],end= " ");
 
# This code is contributed by AnkitRai01


C#




// C# implementation of the approach
using System;
using System.Collections.Generic;
     
class GFG
{
 
// Function to return the chosen indices
static List<int> solve(int X, List<int> A)
{
    int min = int.MaxValue;
    int ind = -1;
 
    for (int i = 0; i < A.Count; i++)
    {
        if (A[i] < min)
        {
            min = A[i];
            ind = i;
        }
    }
 
    // Maximum indices chosen
    int maxIndChosen = X / min;
 
    List<int> ans = new List<int>();
 
    if (maxIndChosen == 0)
    {
        return ans;
    }
 
    for (int i = 0; i < maxIndChosen; i++)
    {
        ans.Add(ind);
    }
 
    int temp = maxIndChosen;
    int sum = maxIndChosen * A[ind];
 
    // Try to replace the first element in ans by i,
    // making the order lexicographically smaller
    for (int i = 0; i < ind; i++)
    {
 
        // If no further replacement possible return
        if (sum - X == 0 || temp == 0)
            break;
 
        // If found an index smaller than ind and sum
        // not exceeding X then remove index of smallest
        // value from ans and then add index i to ans
        while ((sum - A[ind] + A[i]) <= X && temp != 0)
        {
            ans.RemoveAt(0);
            ans.Add(i);
            temp--;
            sum += (A[i] - A[ind]);
        }
    }
 
    ans.Sort();
 
    return ans;
}
 
// Driver code
public static void Main(String []args)
{
    int []arr = { 5, 6, 4, 8 };
    List<int> A = new List<int>(arr);
    int X = 18;
 
    List<int> ans = solve(X, A);
 
    // Print the chosen indices
    for (int i = 0; i < ans.Count; i++)
        Console.Write(ans[i] + " ");
}
}
 
// This code is contributed by 29AjayKumar


Javascript




<script>
// Javascript implementation of the approach
 
// Function to return the chosen indices
function solve(X,A)
{
    let min = Number.MAX_VALUE;
    let ind = -1;
   
    for (let i = 0; i < A.length; i++)
    {
        if (A[i] < min)
        {
            min = A[i];
            ind = i;
        }
    }
   
    // Maximum indices chosen
    let maxIndChosen = Math.floor(X / min);
   
    let ans = [];
   
    if (maxIndChosen == 0)
    {
        return ans;
    }
   
    for (let i = 0; i < maxIndChosen; i++)
    {
        ans.push(ind);
    }
   
    let temp = maxIndChosen;
    let sum = maxIndChosen * A[ind];
   
    // Try to replace the first element in ans by i,
    // making the order lexicographically smaller
    for (let i = 0; i < ind; i++) {
   
        // If no further replacement possible return
        if (sum - X == 0 || temp == 0)
            break;
   
        // If found an index smaller than ind and sum
        // not exceeding X then remove index of smallest
        // value from ans and then add index i to ans
        while ((sum - A[ind] + A[i]) <= X && temp != 0)
        {
            ans.shift();
            ans.push(i);
            temp--;
            sum += (A[i] - A[ind]);
        }
    }
   
    ans.sort(function(a,b){return a-b;});
   
    return ans;
}
 
// Driver code
let A = [5, 6, 4, 8];
let X = 18;
let ans = solve(X, A);
 
// Print the chosen indices
for (let i = 0; i < ans.length; i++)
    document.write(ans[i]+" ");
 
// This code is contributed by rag2127
</script>


Output: 

0 0 2 2

 

Time Complexity: O(NLog(N))

Space Complexity: O(X/min(A))
 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads