Welcome to Subscribe On Youtube

Formatted question description: https://leetcode.ca/all/636.html

636. Exclusive Time of Functions (Medium)

Given the running logs of n functions that are executed in a nonpreemptive single threaded CPU, find the exclusive time of these functions.

Each function has a unique id, start from 0 to n-1. A function may be called recursively or by another function.

A log is a string has this format : function_id:start_or_end:timestamp. For example, "0:start:0" means function 0 starts from the very beginning of time 0. "0:end:0" means function 0 ends to the very end of time 0.

Exclusive time of a function is defined as the time spent within this function, the time spent by calling other functions should not be considered as this function's exclusive time. You should 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 time 0, then it executes 2 units of time and reaches the end of time 1. 
Now function 0 calls function 1, function 1 starts at time 2, executes 4 units of time and end at time 5.
Function 0 is running again at time 6, and also end at the time 6, thus executes 1 unit of time. 
So function 0 totally execute 2 + 1 = 3 units of time, and function 1 totally execute 4 units of time.

Note:

  1. Input logs will be sorted by timestamp, NOT log id.
  2. Your output should be sorted by function id, which means the 0th element of your output corresponds to the exclusive time of function 0.
  3. Two functions won't start or end at the same time.
  4. Functions could be called recursively, and will always end.
  5. 1 <= n <= 100

Solution 1.

  • class Solution {
        public int[] exclusiveTime(int n, List<String> logs) {
            int[] time = new int[n];
            Stack<Integer> stack = new Stack<Integer>();
            int prevTimestamp = 0;
            for (String log : logs) {
                String[] array = log.split(":");
                int id = Integer.parseInt(array[0]);
                String action = array[1];
                int timestamp = Integer.parseInt(array[2]);
                if (action.equals("start")) {
                    if (!stack.isEmpty()) {
                        int prevId = stack.peek();
                        time[prevId] += timestamp - prevTimestamp;
                    }
                    stack.push(id);
                } else {
                    timestamp++;
                    stack.pop();
                    time[id] += timestamp - prevTimestamp;
                }
                prevTimestamp = timestamp;
            }
            return time;
        }
    }
    
    ############
    
    class Solution {
        public int[] exclusiveTime(int n, List<String> logs) {
            int[] ans = new int[n];
            Deque<Integer> stk = new ArrayDeque<>();
            int curr = -1;
            for (String log : logs) {
                String[] t = log.split(":");
                int fid = Integer.parseInt(t[0]);
                int ts = Integer.parseInt(t[2]);
                if ("start".equals(t[1])) {
                    if (!stk.isEmpty()) {
                        ans[stk.peek()] += ts - curr;
                    }
                    stk.push(fid);
                    curr = ts;
                } else {
                    fid = stk.pop();
                    ans[fid] += ts - curr + 1;
                    curr = ts + 1;
                }
            }
            return ans;
        }
    }
    
  • // OJ: https://leetcode.com/problems/exclusive-time-of-functions/
    // Time: O(N)
    // Space: O(N)
    class Solution {
    public:
        vector<int> exclusiveTime(int n, vector<string>& logs) {
            vector<int> ans(n, 0);
            stack<int> s;
            int lastTime;
            for (string &log : logs) {
                int id = stoi(log);
                int i = log.find_last_of(":");
                int time = stoi(log.substr(i + 1));
                if (log[i - 1] == 't') {
                    if (s.size()) ans[s.top()] += time - lastTime;
                    s.push(id);
                    lastTime = time;
                } else {
                    ans[s.top()] += time - lastTime + 1;
                    s.pop();
                    lastTime = time + 1;
                }
            }
            return ans;
        }
    };
    
  • class Solution:
        def exclusiveTime(self, n: int, logs: List[str]) -> List[int]:
            ans = [0] * n
            stk = []
            curr = -1
            for log in logs:
                t = log.split(':')
                fid = int(t[0])
                ts = int(t[2])
                if t[1] == 'start':
                    if stk:
                        ans[stk[-1]] += ts - curr
                    stk.append(fid)
                    curr = ts
                else:
                    fid = stk.pop()
                    ans[fid] += ts - curr + 1
                    curr = ts + 1
            return ans
    
    ############
    
    class Solution(object):
        def exclusiveTime(self, n, logs):
            """
            :type n: int
            :type logs: List[str]
            :rtype: List[int]
            """
            res = [0] * n
            stack = []
            prevTime = 0
            for log in logs:
                idx, type, time = log.split(':')
                if type == 'start':
                    if stack:
                        res[stack[-1]] += int(time) - prevTime
                    stack.append(int(idx))
                    prevTime = int(time)
                else:
                    res[stack[-1]] += int(time) - prevTime + 1
                    stack.pop()
                    prevTime = int(time) + 1
            return res
    
  • func exclusiveTime(n int, logs []string) []int {
    	ans := make([]int, n)
    	stk := []int{}
    	curr := 1
    	for _, log := range logs {
    		t := strings.Split(log, ":")
    		fid, _ := strconv.Atoi(t[0])
    		ts, _ := strconv.Atoi(t[2])
    		if t[1][0] == 's' {
    			if len(stk) > 0 {
    				ans[stk[len(stk)-1]] += ts - curr
    			}
    			stk = append(stk, fid)
    			curr = ts
    		} else {
    			fid := stk[len(stk)-1]
    			stk = stk[:len(stk)-1]
    			ans[fid] += ts - curr + 1
    			curr = ts + 1
    		}
    	}
    	return ans
    }
    
  • function exclusiveTime(n: number, logs: string[]): number[] {
        const res = new Array(n).fill(0);
        const stack: [number, number][] = [];
    
        for (const log of logs) {
            const t = log.split(':');
            const [id, state, time] = [Number(t[0]), t[1], Number(t[2])];
    
            if (state === 'start') {
                if (stack.length !== 0) {
                    const pre = stack[stack.length - 1];
                    res[pre[0]] += time - pre[1];
                }
                stack.push([id, time]);
            } else {
                const pre = stack.pop();
                res[pre[0]] += time - pre[1] + 1;
                if (stack.length !== 0) {
                    stack[stack.length - 1][1] = time + 1;
                }
            }
        }
    
        return res;
    }
    
    

All Problems

All Solutions