ACM ICPC-Style Question

I’m stuck on a programming team question and haven’t been able to figure out a solution. The question goes:

A and B are preparing themselves for programming contests. An important part of preparing for a competition is sharing programming knowledge from the experienced members to those who are just beginning to deal with the contests. Therefore, during the next team training A decided to make teams so that newbies are solving problems together with experienced participants.

A believes that the optimal team of three people should consist of one experienced participant and two newbies. Thus, each experienced participant can share the experience with a large number of people.

However, B believes that the optimal team should have two experienced members plus one newbie. Thus, each newbie can gain more knowledge and experience.

As a result, A and B have decided that all the teams during the training session should belong to one of the two types described above. Furthermore, they agree that the total number of teams should be as much as possible.

There are n experienced members and m newbies on the training session. Can you calculate what maximum number of teams can be formed?

Input: The first line contains two integers n and m (0 ≤ n, m ≤ 5·105) — the number of experienced participants and newbies that are present at the training session.

Output: Print the maximum number of teams that can be formed.

Here is a code solution in C++ below, but I don’t know why it works. Can anyone explain?

#include <iostream>

int main () {
    int n, m;
    cin >> n >> m;
    if (n > m*2)
        n = m*2;
    if (m > n*2)
        m = n*2;
    cout << (n + m) / 3 << endl;
    return (0);
}

In this task, you had to divide N experienced participants and M newbies to a team of three.

Approach :

  1. Let the team with 2 experienced participants and 1 newbie as type 1,

  2. 1 team with an experienced member and two newbies as type 2.

Now We fix the number of commands type 1 as i. Their number is not greater than M(total newbies) . Then the number of command type 2 equals min(M-2*i,N-i). It remains to check all possible i and choose the best i.e. maximum teams we can form.

Complexity : O(N)