-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path636. Exclusive Time of Functions.java
executable file
·81 lines (62 loc) · 2.86 KB
/
636. Exclusive Time of Functions.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
M
tags: Stack
time: O(n)
space: O(n)
#### Stack
- Task time range:
- start range = next task timestamp - start.timestamp
- end range = curr task timestamp - last task timestamp + 1; because end node is inclusive.
- How to think of using stack: a task cannot finish until end is met; a early task cannot stop until a later task ends
- Alternatively, we can use a hashmap to track as well
- Keep track of the timestamp
- make sure to +1 when end node is met because end task is inclusive to this finishing task
```
/*
On a single threaded CPU, we execute some functions. Each function has a unique id between 0 and N-1.
We store logs in timestamp order that describe when a function is entered or exited.
Each log is a string with this format: "{function_id}:{"start" | "end"}:{timestamp}". For example, "0:start:3" means the function with id 0 started at the beginning of timestamp 3. "1:end:2" means the function with id 1 ended at the end of timestamp 2.
A function's exclusive time is the number of units of time spent in this function. Note that this does not include any recursive calls to child functions.
The CPU is single threaded which means that only one function is being executed at a given time unit.
Return the exclusive time of each function, sorted by their function id.
Example 1:
Input:
n = 2
logs = ["0:start:0","1:start:2","1:end:5","0:end:6"]
Output: [3, 4]
Explanation:
Function 0 starts at the beginning of time 0, then it executes 2 units of time and reaches the end of time 1.
Now function 1 starts at the beginning of time 2, executes 4 units of time and ends at time 5.
Function 0 is running again at the beginning of time 6, and also ends at the end of time 6, thus executing for 1 unit of time.
So function 0 spends 2 + 1 = 3 units of total time executing, and function 1 spends 4 units of total time executing.
Note:
1 <= n <= 100
Two functions won't start or end at the same time.
Functions will always log when they exit.
*/
/*
A task cannot finish until end is met; a early task cannot stop until a later task ends. Use a stack.
*/
class Solution {
public int[] exclusiveTime(int n, List<String> logs) {
int[] rst = new int[n];
Stack<Integer> stack = new Stack<>();
int timestamp = 0;
for (String log : logs) {
String[] parts = log.split(":");
int task = Integer.parseInt(parts[0]);
boolean start = parts[1].equals("start");
int time = Integer.parseInt(parts[2]);
// Update last record's time
if (!stack.isEmpty()) rst[stack.peek()] += time - timestamp;
timestamp = time;
if (start) stack.push(task);
else {
int endTask = stack.pop();
rst[endTask] += 1; // inclusive
timestamp++;
}
}
return rst;
}
}
```