> For the complete documentation index, see [llms.txt](https://mayanktyagi3111.gitbook.io/interview-prep/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mayanktyagi3111.gitbook.io/interview-prep/dynamic-programming/tushars-birthday-party.md).

# Tushar's Birthday Party

As it is Tushar’s Birthday on March 1st, he decided to throw a party to all his friends at TGI Fridays in Pune.\
Given are the eating capacity of each friend, filling capacity of each dish and cost of each dish. A friend is satisfied if the sum of the filling capacity of dishes he ate is equal to his capacity. Find the minimum cost such that all of Tushar’s friends are satisfied (reached their eating capacity).

**NOTE:**

1. Each dish is supposed to be eaten by only one person. Sharing is not allowed.
2. Each friend can take any dish unlimited number of times.
3. There always exists a dish with filling capacity 1 so that a solution always exists.

**Input Format**

```
Friends : List of integers denoting eating capacity of friends separated by space.
Capacity: List of integers denoting filling capacity of each type of dish.
Cost :    List of integers denoting cost of each type of dish.
```

**Constraints:**\
1 <= Capacity of friend <= 1000\
1 <= No. of friends <= 1000\
1 <= No. of dishes <= 1000

**Example:**

```
Input:
    2 4 6
    2 1 3
    2 5 3

Output:
    14

Explanation: 
    First friend will take 1st and 2nd dish, second friend will take 2nd dish twice.  Thus, total cost = (5+3)+(3*2)= 14
```

```java
public class Solution {
    public int solve(int[] A, int[] B,int[] C) {
        int max = 0;
        for (int x : A)
            max = Math.max(max, x);
        // dp[i] -> is the min cost for i capacity
        int dp[] = new int[max + 1];
        Arrays.fill(dp, -1);
        dp[0] = 0;
        for (int i = 1; i <= max; i++) {
            for (int j = 0; j < B.length; j++) {
                if (i - B[j] >= 0 && dp[i - B[j]] != -1)
                    dp[i] = Math.min((dp[i] == -1 ? Integer.MAX_VALUE : dp[i]), C[j] + dp[i - B[j]]);
            }
        }
        int sum = 0;
        for (int x : A) {
            sum += dp[x];
        }
        return sum;
    }
}
```
