Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8932861
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:24:14+00:00 2026-06-15T09:24:14+00:00

I was wondering what the best way is to batch a given set of

  • 0

I was wondering what the best way is to batch a given set of numbers in terms of a processing time.
Take items: 9, 18, 7, 8, 4, 9, 11, 15, 3, 8,
(item 1 has a processing time of 9, item 2 has a processing time of 18, etc.)

If the batch processing time limit is set to say 20, then a possible grouping of the items into batches would be:{1, 3, 5} {2} {4, 6} {8, 9} {7, 10} (group 1 is 9+7+4=20) etc so 5 batches of items have been made where the contents are <= 20.

Ideally i want it to sort them into as fewer groups as possible. Above’s case is a minimum of 5 groups with a content limit of 20…

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T09:24:16+00:00Added an answer on June 15, 2026 at 9:24 am

    If the batch processing time limit is set to say 20,…

    So I assume that there is no element greater than batch processing time limit. Here is my approach:

    • Firstly sort the items. Then get 2 pointers for the list, one is at
      index 0 (left-pointer) and the other one at the last index
      (right-pointer).
    • Take the element of right-pointer and add it to a sublist. Take the
      element of left-pointer and add it to the same sublist. If the sum of
      the elements in sublist is less than limit, update left-pointer (set
      it to next element) and try adding it. Continue this process until a
      sublist is filled.
    • Then start filling the next sublist. Consume all elements to
      construct sublists.

    Implementation in Java:

    int[] input = { 9, 18, 7, 8, 4, 9, 11, 15, 3, 8 }; // Input items.
    Arrays.sort(input); // Sort the items.
    int left = 0, right = input.length - 1; // Left and right pointers.
    int remainder = 0, limit = 20;
    
    // list of groups.
    ArrayList<ArrayList<Integer>> list = new ArrayList<ArrayList<Integer>>();
    
    while (right >= left) 
    {
        ArrayList<Integer> subList = new ArrayList<Integer>();
        list.add(subList);
        // Add the current maximum element.
        subList.add(input[right]);
        if (right == left)
            break;
        remainder = limit - input[right];
        right--;
    
        // Add small elements until limit is reached.
        while (remainder > input[left]) {
            subList.add(input[left]);
            remainder = remainder - input[left];
            left++;
        }
    
        remainder = 0; // Reset the remainder.
    }
    

    Printing the groups:

    for (ArrayList<Integer> subList : list) 
    {
        for (int i : subList)
            System.out.print(i + " ");
        System.out.println();
    }
    

    Output: (Each line denotes a group of numbers)

    18 
    15 3 
    11 4 
    9 7 
    9 8
    8
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just wondering the best way to do this in a single batch file. I
Just wondering the best way to replace in place matches on a string. value.replace(bob,
I was wondering the best way to upload file to a web server in
Just wondering what the best way to access read only information form a Microsoft
Just wondering whats the best way to test Python CGI while developing a site?
Just wondering what the best way to build a NSPredicate is if some filters
I am wondering what the best way to do a small update to my
I was wondering what the best way to use transations with the entity framework.
I am wondering whats the best way to programmatically make rounded corners for images.
I'm wondering how the best way to build a way to interface with Yahoo

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.