C++ Coding Test Course, Cocktail Making

This course introduces how to solve the cocktail making problem using C++. Algorithmic problems generally require generating a desired output for a specific input. This problem involves making cocktails using various ingredients according to given proportions.

Problem Description

You want to make cocktails with various ingredients. Each ingredient requires a specific amount. You want to use each ingredient to make as much cocktail as possible according to the given proportions. Calculate how many servings of cocktails you can make by properly calculating the amount and requirements of the given ingredients.

Input

  • The first line contains the number of types of ingredients N (1 ≤ N ≤ 100).
  • The second line contains the amount of each ingredient A[i] (1 ≤ A[i] ≤ 10^5).
  • The third line contains the requirement of each ingredient B[i] (1 ≤ B[i] ≤ 10^5).

Output

Print the maximum number of servings of cocktails that can be made.

Example

Input

3
100 200 300
10 20 30

Output

3

Problem Solving Approach

To solve this problem, you need to calculate how many servings of cocktails can be made based on the amount and requirements of each ingredient. Follow the procedure below:

  1. Calculate the possible maximum number of cocktails for each ingredient. This is the quotient of the amount of that ingredient divided by its requirement.
  2. Take the minimum of the maximum cocktail numbers calculated for all ingredients. This value will be the final number of cocktails that can be made.

C++ Code Implementation

Now let’s write the C++ code based on the above approach. The code will receive input, calculate the possible maximum number of cocktails for each ingredient, and output the minimum value.

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
    int N;
    cin >> N; // Number of ingredient types
    vector<int> A(N); // Amount of ingredients
    vector<int> B(N); // Requirement of ingredients

    // Input amount of ingredients
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }
    
    // Input requirement of ingredients
    for (int i = 0; i < N; i++) {
        cin >> B[i];
    }

    int maxCocktails = INT_MAX; // Set initial value to a very large number

    // Calculate maximum number of cocktails for each ingredient
    for (int i = 0; i < N; i++) {
        int cocktailsPossible = A[i] / B[i]; // Possible number of cocktails
        maxCocktails = min(maxCocktails, cocktailsPossible); // Update minimum value
    }

    cout << maxCocktails << endl; // Print the result
    return 0;
}
    

Code Explanation

The above C++ code calculates the maximum number of servings of cocktails through the following steps:

  1. Receive the number of ingredient types N and declare two vectors A and B to store the amount and requirement of ingredients.
  2. Input the amount of ingredients and input the requirement for each ingredient.
  3. Initialize the maximum number of cocktails to ‘INT_MAX’ to set a comparison basis.
  4. Calculate the possible number of cocktails for each ingredient and store the smallest value in ‘maxCocktails’.
  5. Finally, output the calculated maximum number of cocktails.

Complexity Analysis

The time complexity of this problem is O(N). N is the number of ingredient types, and since we need to check the amount and requirements for each ingredient, it has linear time complexity. The space complexity is O(N) because two vectors are used to store the amount and requirements of ingredients.

Conclusion

In this course, we learned how to solve the cocktail making problem using C++. To solve the given problem, you need to handle input and derive desired results through calculations. This helps develop algorithmic problem-solving skills and can be useful in real coding tests.

Expanding the problem by adding more diverse ingredients and conditions would also be good practice. I want to emphasize once again that understanding the problem and approaching it logically is important, in addition to coding.