Load Balancer
Implement a prototype of a round-robin load-balancing algorithm.
There are n servers indexed from 1 to n, and m requests to be processed. The ith request arrives at time arrival[i] and takes burstTime[i] time to execute. The load balancer assigns the ith request to the server with the minimum index. A server that is assigned the ith request is unavailable from arrival[i] to arrival[i] + burstTime[i]. At arrival[i] + burstTime[i], the server is available to serve a new request.
Given n, arrival, and burstTime for each request, find the index of the server that executes it. If no server is available at the time, the request is dropped, and -1 is reported. If multiple requests arrive at the same time, the one with the smaller index is assigned first.
Complete the function getServerIndex in the editor.
getServerIndex has the following parameter(s):
int n: the number of serversint arrival[m]: the arrival time of requestsint burstTime[m]: the burst time of requests
Returns
int[m]: the Index of the servers the requests are assigned to, or -1 if no server is available
1Example 1

Constraints
Limits and guarantees your solution can rely on.
1 ≤ n ≤ 1051 ≤ m ≤ 1051 ≤ arrival[i] ≤ 1091 ≤ burstTime[i] ≤ 109