But it doesn't have to end here! Sign up for the 7-day coding interview crash course and you'll get a free Interview Cake problem every week.
You're in!
You are a renowned thief who has recently switched from stealing precious metals to stealing cakes because of the insane profit margins. You end up hitting the jackpot, breaking into the world's largest privately owned stock of cakes—the vault of the Queen of England.
While Queen Elizabeth has a limited number of types of cake, she has an unlimited supply of each type.
Each type of cake has a weight and a value, stored in a CakeType structure:
typedef struct CakeType {
unsigned int weight;
unsigned int value;
} CakeType;
For example:
// weighs 7 kilograms and has a value of 160 shillings
CakeType cakeType = {7, 160};
// weighs 3 kilograms and has a value of 90 shillings
CakeType cakeType = {3, 90};
You brought a duffel bag that can hold limited weight, and you want to make off with the most valuable haul possible.
Write a function maxDuffelBagValue() that takes an array of cake type structures and a weight capacity, and returns the maximum monetary value the duffel bag can hold.
For example:
const CakeType cakeTypes[3] = {
{7, 160},
{3, 90},
{2, 15}
};
const size_t cakeTypesLength = sizeof(cakeTypes)/sizeof(cakeTypes[0]);
unsigned int capacity = 20;
maxDuffelBagValue(cakeTypes, cakeTypesLength, capacity);
// returns 555 (6 of the middle type of cake and 1 of the last type of cake)
Weights and values may be any non-negative integer. Yes, it's weird to think about cakes that weigh nothing or duffel bags that can't hold anything. But we're not just super mastermind criminals—we're also meticulous about keeping our algorithms flexible and comprehensive.
Log in or sign up with one click to get immediate access to 3 free mock interview questions
We'll never post on your wall or message your friends.
Actually, we don't support password-based login. Never have. Just the OAuth methods above. Why?
time, and space, where is number of types of cake and is the capacity of the duffel bag. We loop through each cake ( cakes) for every capacity ( capacities), so our runtime is , and maintaining the array of capacities gives us the space.
Congratulations! Because of dynamic programming, you have successfully stolen the Queen's cakes and made it big.
Keep in mind: in some cases, it might not be worth using our optimal dynamic programming solution. It's a pretty slow algorithm—without any context (not knowing how many cake types we have, what our weight capacity is, or just how they compare) it's easy to see growing out of control quickly if or is large.
If we cared about time, like if there was an alarm in the vault and we had to move quickly, it might be worth using a faster algorithm that gives us a good answer, even if it's not always the optimal answer. Some of our first ideas in the breakdown were to look at cake values or value/weight ratios. Those algorithms would probably be faster, taking time (we'd have to start by sorting the input).
Sometimes an efficient, good answer might be more practical than an inefficient, optimal answer.
Log in or sign up with one click to get immediate access to 3 free mock interview questions
We'll never post on your wall or message your friends.
Actually, we don't support password-based login. Never have. Just the OAuth methods above. Why?
Reset editor
Powered by qualified.io