Maximum Matching of Players With Trainers — LeetCode 2410 Python Solution
- Problem
- #2410
- Pattern
- Two Pointers
- Reading time
- 2 min
- Source
- leetcode.com
The problem
You are given a 0-indexed integer array players, where players[i] represents the ability of the ith player. You are also given a 0-indexed integer array trainers, where trainers[j] represents the training capacity of the jth trainer.
Example
- Input
- players = [4,7,9], trainers = [8,2,5,8]
- Output
- 2
- Explanation
- One of the ways we can form two matchings is as follows:
Python solution
class Solution:
def matchPlayersAndTrainers(self, players: List[int], trainers: List[int]) -> int:
players.sort()
trainers.sort()
j, n = 0, len(trainers)
for i, p in enumerate(players):
while j < n and trainers[j] < p:
j += 1
if j == n:
return i
j += 1
return len(players)Complexity
| Measure | Complexity |
|---|---|
| Time | O(m \times \log m + n \times \log n) |
| Space | O(\max(\log m, \log n)) auxiliary |
Pattern: Two Pointers
Use the order already in the input to discard half the search space at every step. LeetCode 2410. Maximum Matching of Players With Trainers is filed here because LeetCode tags it Two Pointers, which is the vocabulary this hub collects.
The two pointers guide has the Python template for the pattern and the 201 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 2410. Maximum Matching of Players With Trainers?
- LeetCode 2410. Maximum Matching of Players With Trainers is rated Medium on LeetCode.
- What is the time complexity of LeetCode 2410. Maximum Matching of Players With Trainers?
- The Python solution on this page runs in O(m \times \log m + n \times \log n).
- What is the space complexity of LeetCode 2410. Maximum Matching of Players With Trainers?
- The Python solution on this page uses O(\max(\log m, \log n)) auxiliary space.
- What topics does LeetCode 2410. Maximum Matching of Players With Trainers cover?
- LeetCode 2410. Maximum Matching of Players With Trainers is tagged Greedy, Array, Two Pointers and Sorting on LeetCode.