Effective Manager
A product manager has to organize n meetings with different people. Meeting with each person results in an increase or decrease in the effectiveness index of the manager. The manager wants to organize the meetings such that the index remains positive for as many meetings as possible. Find the maximum number of meetings for which the effectiveness index is positive. The index at the beginning is 0.
Note: After the meetings begin, the index must remain above 0 to be positive.
Complete the function maxMeetings in the editor.
maxMeetings has the following parameter:
int effectiveness[n]: the increase or decrease effectiveness for each meeting.
Returns
int: the maximum possible number of meetings while maintaining a positive index
🐳 ♫⋆。♪ ₊˚♬ ゚Credit to robotᯓᡣ𐭩
1Example 1
Constraints
Limits and guarantees your solution can rely on.