Warehouse Logistics

In this challenge you must optimise the movement of a group of pickers retrieving and packing items from around a warehouse.

Objective

Initially you will be given the map of the warehouse that includes the start location of each picker, the location of a number of fixtures that contain the inventory you need to pick and the location of the dispatch desks. You then must decide what order a picker should to retrieve items and take them to a dispatch desk for processing. Each picker has a load capacity, a list of items types they can carry and a movement speed, so selecting the right picker for the job is essential. Each item that requires picking has a size and item type (e.g. food, fragile etc) associated with it. Each pack station also has a throughput speed and a list of item types they accept so again careful planning is required to get the optimal solution.

The map of the warehouse is randomly generated but its size and features will be determined by the game style. Each picker when moving around the warehouse can only move in a north, east, south, west direction i.e. not diagonally. A picker cannot walk through a fixture or a dispatch desk however they can pass by another picker in the same location.

Every fixture has a pick difficulty and this is the length of time it take to remove one unit of an item from the fixture. If you have to pick two or more units then the amount of time required will vary based upon a formula where the second item takes half the time, the third item takes a third of the time, the forth item a quarter of the time etc. This calculation stops at ten units and every item after ten will take one tenth of the time. For example if you have a pick difficulty of 100 and you need to pick 13 items from this fixture the calculation will be as follows:

100+50+33.33+25+20+16.66+14.28+12.5+11.11+10+10+10+10 = 322.89

This would result in a pick time of 323 as all values are rounded up at the end of a calculation.

An example warehouse is show below:

whl_example1.png

The fixtures are shown in blue, pickers in green, dispatch desks in orange and empty floor space in grey.

At any point during the game you can submit a solution. The solution at a minimum should pick and dispatch every item. Your solution is then compared to your opponents and the person submitting the quickest solution will be the winner. If both players best solution takes the same amount of time then the player who submits the solution first will be the winner.

At the end of the game your best solution will be animated in the visualiser. Pickers will be displayed going around the warehouse collecting items, as an item is loaded from a fixture the the picker colour will change as they become loaded.

Useful Links

Use the links below to get a working example that just randomly guesses common two letter words:

iconWarehouseLogisticsBlack.png
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License