Given two integer arrays startTime and endTime and given an integer
queryTime.
The ith student started doing their homework at the time startTime[i] and finished it at time endTime[i].
Return the number of students doing their homework at time queryTime. More formally, return the number of students where queryTime lays in the interval
[startTime[i], endTime[i]] inclusive.
Input: startTime =[1,2,3], endTime =[3,2,7], queryTime =4Output: 1Explanation: We have 3 students where:The first student started doing homework at time 1 and finished at time 3 and wasn't doing anything at time 4.The second student started doing homework at time 2 and finished at time 2 and also wasn't doing anything at time 4.The third student started doing homework at time 3 and finished at time 7 and was the only student doing homework at time 4.
We just need to count how many students are doing homework at the given queryTime. For each student, if queryTime is between their start and end time (inclusive), we count them. This is a direct application of the problem statement.
classSolution {
public:int busyStudent(vector<int>& startTime, vector<int>& endTime, int queryTime) {
int ans =0, n = startTime.size();
for (int i =0; i < n; ++i) {
if (startTime[i] <= queryTime && queryTime <= endTime[i]) ++ans;
}
return ans;
}
};
1
2
3
4
5
6
7
8
9
funcbusyStudent(startTime []int, endTime []int, queryTimeint) int {
ans:=0fori:=0; i < len(startTime); i++ {
ifstartTime[i] <=queryTime&&queryTime<=endTime[i] {
ans++ }
}
returnans}
1
2
3
4
5
6
7
8
9
classSolution {
publicintbusyStudent(int[] startTime, int[] endTime, int queryTime) {
int ans = 0;
for (int i = 0; i < startTime.length; ++i) {
if (startTime[i]<= queryTime && queryTime <= endTime[i]) ans++;
}
return ans;
}
}
1
2
3
4
5
6
7
8
9
classSolution {
funbusyStudent(startTime: IntArray, endTime: IntArray, queryTime: Int): Int {
var ans = 0for (i in startTime.indices) {
if (startTime[i] <= queryTime && queryTime <= endTime[i]) ans++ }
return ans
}
}
1
2
3
4
5
6
7
classSolution:
defbusyStudent(self, startTime: list[int], endTime: list[int], queryTime: int) -> int:
ans =0for s, e in zip(startTime, endTime):
if s <= queryTime <= e:
ans +=1return ans
1
2
3
4
5
6
7
8
9
10
11
impl Solution {
pubfnbusy_student(start_time: Vec<i32>, end_time: Vec<i32>, query_time: i32) -> i32 {
letmut ans =0;
for (&s, &e) in start_time.iter().zip(end_time.iter()) {
if s <= query_time && query_time <= e {
ans +=1;
}
}
ans
}
}