Guest User

Untitled

a guest
May 3rd, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Goal: delight your customers by sending riders to pick and deliver their orders
  2. in less than 60 minutes (faster if you can).
  3.  
  4. Hypothesis:
  5. - (x, y) coordinates are used to locate restaurants, customers and riders on a grid
  6. - the distance between x=0 and x=1 is 1000 meters (1 km)
  7. - the distance between two arbitrary (x,y) locations is the euclidean distance (straight line)
  8. - times are expressed in minutes
  9. - speeds are expressed in kilometers per hour (km/h)
  10.  
  11. Note: some other hypothesis you can make to simplify the problem:
  12. - all customer orders are received at the same time (t=0)
  13. - all restaurants start cooking at the same time (t=0)
  14. - all riders start moving at the same time (t=0)
  15. - each restaurant can cook an infinite number of meals in parallel
  16. - each rider can carry an infinite amount of meals at the same time
Advertisement
Add Comment
Please, Sign In to add comment