Skip to main content

Best Team With No Conflicts - Solution & Explanation

MediumArrayDynamic ProgrammingSorting10 min readAsked at: Morgan Stanley, Google
Practice this problem

Problem Statement

You are the manager of a basketball team. For the upcoming tournament, you want to choose the team with the highest overall score. The score of the team is the sum of scores of all the players in the team.

However, the basketball team is not allowed to have conflicts. A conflict exists if a younger player has a strictly higher score than an older player. A conflict does not occur between players of the same age.

Given two lists, scores and ages, where each scores[i] and ages[i] represents the score and age of the ith player, respectively, return the highest overall score of all possible basketball teams.

 

Example 1:

Input: scores = [1,3,5,10,15], ages = [1,2,3,4,5]
Output: 34
Explanation: You can choose all the players.

Example 2:

Input: scores = [4,5,6,5], ages = [2,1,2,1]
Output: 16
Explanation: It is best to choose the last 3 players. Notice that you are allowed to choose multiple people of the same age.

Example 3:

Input: scores = [1,2,3,5], ages = [8,9,10,1]
Output: 6
Explanation: It is best to choose the first 3 players. 

 

Constraints:

  • 1 <= scores.length, ages.length <= 1000
  • scores.length == ages.length
  • 1 <= scores[i] <= 106
  • 1 <= ages[i] <= 1000

Approach Overview

Problem Overview: You are given two arrays: scores and ages. Choose a group of players such that no younger player has a strictly higher score than an older player. The goal is to maximize the total team score while respecting this constraint.

Approach 1: Brute Force Backtracking (Exponential Time, O(2^n) time, O(n) space)

Try all possible subsets of players and check whether the team satisfies the conflict rule. For each subset, verify that if player i is younger than player j, then score[i] <= score[j]. If valid, compute the total score and track the maximum. This approach explores every combination using recursion or bitmasking. Time complexity is O(2^n) with O(n) recursion space, which becomes infeasible even for moderate input sizes.

Approach 2: Dynamic Programming with Sorting (O(n^2) time, O(n) space)

The key insight: conflicts only occur when a younger player has a higher score than an older one. Sort players by age, and if ages are equal, sort by score. After sorting, any valid team must have non‑decreasing scores as you move through the list. This turns the problem into a variation of the classic LIS-style dynamic programming problem.

Create a list of (age, score) pairs and sort it. Let dp[i] represent the maximum team score where player i is the last selected player. For each player i, iterate through all previous players j < i. If score[j] <= score[i], player i can join the team ending at j. Update dp[i] = max(dp[i], dp[j] + score[i]). Initialize dp[i] = score[i] to represent a team containing only that player. The answer is the maximum value in dp.

This dynamic programming approach runs in O(n^2) time and uses O(n) space. Sorting removes age conflicts and reduces the constraint to a score ordering problem. The technique combines ideas from sorting, array processing, and dynamic programming.

Recommended for interviews: Interviewers typically expect the sorted dynamic programming solution. Starting with the brute force idea shows you understand the constraints, but recognizing that sorting by age converts the rule into a monotonic score condition demonstrates strong problem‑solving and DP pattern recognition.

Approach 1: Dynamic Programming with Sorting

First, pair up each player's score and age, and then sort them based on age and score. This allows us to always build teams that do not violate the conflict rule of younger players having higher scores than older players. Subsequently, use dynamic programming to build the optimal solution progressively by calculating the best team score achievable up to this player, considering current player's score only if it resolves no conflicts by adhering to the sorted order.

This solution sorts players by their ages first and scores second to ensure no conflicts. Then it uses dynamic programming to keep track of the best possible score for each player being the last player in the team.

Code

Python

Java

C++

C

C#

JavaScript

Complexity

Time Complexity: O(n^2), where n is the number of players.
Space Complexity: O(n) for the DP array.

Try this approach in the editor →

Approach 2: Default Approach

Code

Python

Java

C++

Go

TypeScript

JavaScript

Try this approach in the editor →

Complexity Comparison

ApproachComplexity
Dynamic Programming with Sorting

Time Complexity: O(n^2), where n is the number of players.
Space Complexity: O(n) for the DP array.

Default Approach—

Detailed Complexity Analysis

ApproachTimeSpaceWhen to Use
Brute Force BacktrackingO(2^n)O(n)Conceptual baseline to understand constraints; impractical for real inputs
Dynamic Programming with SortingO(n^2)O(n)General solution used in interviews; converts the constraint into an LIS-style DP

Video Solution

Best Team with no Conflicts - Leetcode 1626 - Python • NeetCodeIO • 12,027 views views

Watch 9 more video solutions →

Frequently Asked Questions

Is Best Team With No Conflicts easy or hard?
Best Team With No Conflicts is rated Medium on LeetCode. The challenge is recognizing that sorting by age transforms the constraint into a monotonic score problem, which can then be solved using a longest-increasing-subsequence style dynamic programming approach.
Best Team With No Conflicts Python/Java solution
Implement the sorted dynamic programming approach. Pair each player's age with their score, sort by age then score, and compute a DP array where dp[i] represents the best team score ending with player i. The logic is identical across Python, Java, C++, and JavaScript with O(n^2) time complexity.
How to solve Best Team With No Conflicts in O(n)?
An O(n) solution is not feasible because each player may need to be compared with many previous players to ensure score ordering. The typical optimized solution is O(n^2) dynamic programming after sorting. Some advanced implementations can reduce it to O(n log n) using Fenwick Trees or segment trees with score compression.
What is the best approach for Best Team With No Conflicts?
The standard solution uses dynamic programming after sorting players by age and score. Sorting ensures that age conflicts are eliminated, leaving only a non‑decreasing score condition. A DP array tracks the best team score ending at each player. This approach runs in O(n^2) time and O(n) space.
Is Best Team With No Conflicts asked at Google/Amazon/Meta?
Best Team With No Conflicts appears in interview preparation lists for companies that emphasize dynamic programming and sequence optimization problems. Variants of this problem are commonly discussed in interviews at companies like Amazon, Google, and Meta because it tests DP patterns similar to Longest Increasing Subsequence.
What data structure is used in Best Team With No Conflicts?
The solution primarily uses arrays along with sorting and dynamic programming. A DP array stores the maximum team score achievable when ending with a specific player. Some optimized versions use Fenwick Trees or segment trees to speed up transitions.
What is the time complexity of Best Team With No Conflicts?
The optimal dynamic programming approach runs in O(n^2) time after sorting the players. Sorting takes O(n log n), and the DP step compares each player with previous players. Space complexity is O(n) for the DP array.

Ready to solve this problem?

Practice Best Team With No Conflicts with our built-in code editor and test cases.

Practice on FleetCode