From brand guide: https://flsouthern.mediavalet.com/portals/fsc-brand-guidelines
CSC 3380: Algorithms
(Spring 2025)

Syllabus

LMS

Teachers

Assignments
Assignments


Other Pages

Project 1:
Balanced Saddlebags


Assigned: Tue Jan 21 2025
Due: 11:59:00 PM on Fri Feb 21 2025
Team Size: 2
Language: Java
Out of: 100 points


You work for a bike messenger company, packing saddlebags for the couriers' bikes before they head out. Your company handles packages of widely varying weights. It is quite hard on the messengers if their saddlebags are unbalanced, even in the slightest. You decide to write a program to make sure they are always balanced equally, if possible. Your program takes a list of integer weights and paritions it into two lists that have the same sum of values. In other words, you need to pick some sublist of the overall list such that those integers in the sublist sum up to half of the overall list's sum. I am expecting you to run an exponential-time algorithm to solve this problem, so this will test your ability to work with a large search space.

Part 0, 0 points: Look at the instructions below to organize your code to simplify the submission process.

Part 1, 0 points: Add a JavaDoc comment header to describe your project and list who is in your team. Additionally, add a method to your class, getAuthors, that returns a string with the names of all members of your team, like this:

    /**
     * Returns the authors' names.
     * @return  The names of the authors of this file.
     */
    public static String getAuthors() {
        return "Anne Borgin and Kyle Burke";
    }

Part 2, 0 points: Create a SaddlebagBalancer.java file, you will add a static method, getPartition, that takes a List of Integers (the full list of weights of packages) and returns a List of integers of the same length where all elements are either 0 or 1.

    public static List<Integer> getPartition(List<Integer> packageWeights) {
The different numbers are an indication of which side of the partition you have placed each element. (I.e., which saddlebag you're putting each package in; 0 for left and 1 for right.) For example, if the method is given the list [1, 2, 3, 4], you should return either [0, 1, 1, 0] or [1, 0, 0, 1] (as a List). You are welcome to write any other methods or classes, so long as they are included in your single Java file. You may not use any packages outside of the standard Java 8 libraries.

Part 3, 0 points:

You'll need these files in order to run the tester:

Part 4, 100 points: Your grade will be based on the longest lists you can successfully partition in a restricted amount of time. Here is SaddlebagBalancerTester.java, which will test your code on increasingly larger lists. It may not be able to test the validity of your code; you may want to add that in yourself. (If you submit it to me, I will be able to check the validity.) Important notes:

  • If any of the tests produce the wrong answer, you won't get any points.
  • Testing runs you try yourself do not give an official grade; you'll need to submit and have me run them for that.
  • When testing on your own, you'll need to enable assertions. In the command line, you can do that with the -ea flag: java -ea ClassToExecute If you're using an IDE, you'll have to look online to figure out how to enable them.

Part 5, 0 points: In order to solve this problem you (essentially) need to test every possible division of elements into the two sublists. That is an exponential number of possible divisions. The tricky part of this is to go through all possibilities in a (relatively) efficient way, and then test them to find one that works.

Part 6, 0 points: I expect that you'll need to use multiple threads to earn maximum points in the project. Hint: the computer I'm grading on has 16 CPUS.

Submitting your Project:

The files I'm looking for in this project are:

  • SaddlebagBalancer.java
Pick a team name (all alphabetical characters) for yourself that no one else will choose. (Using your names makes it easier for me, e.g. if I worked with Anne Borgin, our team name could be BorginAndBurke.) Put completed working files you have directly in a folder (no subfolders) named <YourTeamName>Project1, then zip the folder and upload the resulting .zip file to the assignment's canvas page so I can grade it. (E.g. BorginAndBurkeProject1.zip.) If you do it before the deadline and want me to run it through my tester to see how it does against the random players, send me a message and I'll do it. If you upload it after the deadline, please send me a message so I can grade it ASAP. Please please please name the folder correctly, then zip it; don't rename the zip file, or you'll have to resubmit and may incur a lateness penalty.