Algorithms for Shipping Container Delivery Scheduling

Anna Collins,Dimitrios Letsios,Gueorgui Mihaylov
2023-07-01
Abstract:Motivated by distribution problems arising in the supply chain of Haleon, we investigate a discrete optimization problem that we call the "container delivery scheduling problem". The problem models a supplier dispatching ordered products with shipping containers from manufacturing sites to distribution centers, where orders are collected by the buyers at agreed due times. The supplier may expedite or delay item deliveries to reduce transshipment costs at the price of increasing inventory costs, as measured by the number of containers and distribution center storage/backlog costs, respectively. The goal is to compute a delivery schedule attaining good trade-offs between the two. This container delivery scheduling problem is a temporal variant of classic bin packing problems, where the item sizes are not fixed, but depend on the item due times and delivery times. An approach for solving the problem should specify a batching policy for container consolidation and a scheduling policy for deciding when each container should be delivered. Based on the available item due times, we develop algorithms with sequential and nested batching policies as well as on-time and delay-tolerant scheduling policies. We elaborate on the problem's hardness and substantiate the proposed algorithms with positive and negative approximation bounds, including the derivation of an algorithm achieving an asymptotically tight 2-approximation ratio.
Optimization and Control,Data Structures and Algorithms
What problem does this paper attempt to address?
### What problem does this paper attempt to solve? This paper primarily explores a discrete optimization problem—the Container Delivery Scheduling Problem. Specifically, the paper aims to address the following issues: 1. **Supplier Scheduling Problem**: - Suppliers need to transport products from manufacturing sites to distribution centers via containers. - Orders are collected by buyers at the agreed time. 2. **Cost Trade-off**: - Suppliers can deliver early or late to reduce transshipment costs, but this increases inventory costs. - The goal is to find a good balance between these two costs, i.e., to calculate a delivery schedule that achieves a good trade-off between these costs. 3. **Time Dependency**: - Unlike the classic bin packing problem, the size of the items is not only fixed but also depends on the agreed delivery time and the actual delivery time. - A strategy needs to be developed to decide which orders each container should include and when to deliver them. 4. **Algorithm Design and Analysis**: - A series of algorithms are proposed, including different batching strategies (such as sequential batching and nested batching) and different scheduling strategies (such as just-in-time delivery and permissible delay scheduling strategies). - The algorithms are analyzed for their approximation, proving their effectiveness and applicability. ### Main Contributions - Proposed different algorithms for the container delivery scheduling problem and analyzed the approximation performance of these algorithms. - Investigated the computational complexity of the problem and discussed its practical significance. - Solved key technical challenges by combining transportation costs and inventory costs through new bounds and structural properties. ### Summary This paper mainly addresses the issue of how to minimize transportation and inventory costs in supply chain management by reasonably arranging the loading and delivery times of containers. By proposing various strategies and algorithms and conducting theoretical analysis, the paper provides effective solutions to this type of problem.