Question 1
An online streaming platform tracks nn user sessions. Each session has a specific start and end time, provided as a 2D array, sessionTimings
, of size n×2n \times 2, where each element represents the [startTime, endTime]
of a session.
Implement a function that determines the minimum number of recommendation engines required to process all sessions without overlapping sessions. Each session requires exactly one recommendation engine.
The function getMinEngines
will take one input:
int getMinEngines(vector<vector<int>>& sessionTimings)
sessionTimings[i]
represents each session’s start and end times.
The function should return the minimum number of engines needed to process all sessions without overlapping recommendations.
Note:
Sessions can end and begin at the same time on a single engine. For example, sessions with times [10, 15]
and [15, 20]
can be processed by the same engine.
Example:
Suppose n=5n = 5, and
sessionTimings = [[1, 4], [1, 5], [5, 6], [6, 10], [7, 9]]
Time | Event | Sessions Running |
---|---|---|
1 | Sessions 1 and 2 start | 1,2 |
1 | 1,2 | |
4 | Session 1 ends | 2 |
5 | Session 2 ends, Session 3 starts | 3 |
6 | Session 3 ends, Session 4 starts | 4 |
7 | Session 5 starts | 4,5 |
9 | Session 5 ends | 4 |
10 | Session 4 ends | - |
Sessions 1 and 2 overlap, as do sessions 4 and 5, so at least 2 recommendation engines are required. Hence, the answer is 2.
Question 2
In a product recommendation system, two key-value pairs, predictions1
and predictions2
, are given as strings. They represent the product recommendations made by two different algorithms.
Implement a function to find the keys where the recommended products (values) differ between the two algorithms. If a key is present in only one algorithm’s recommendations, it should not be considered.
The function getPredictionDiff
takes two inputs:
string predictions1
: product recommendations made by Algorithm 1.string predictions2
: product recommendations made by Algorithm 2.
The function should return a list of the keys where the recommendations differ between the two algorithms, sorted alphabetically.
Example:
predictions1 = {"hello":"world","hi":"hello","you":"me"}
predictions2 = {"hello":"world","hi":"helo","you":"me"}
The only common key where the values differ is "hi"
. Hence, the answer is ["hi"]
.
我们长期稳定承接各大科技公司如TikTok、Google、Amazon等的OA笔试代写服务,确保满分通过。如有需求,请随时联系我们。
We consistently provide professional online assessment services for major tech companies like TikTok, Google, and Amazon, guaranteeing perfect scores. Feel free to contact us if you're interested.
