代码拉取完成,页面将自动刷新
//
// Created by ߳ on 2023/8/17.
//
#ifndef LEETCODE_SOLUTION68_H
#define LEETCODE_SOLUTION68_H
#include "bits/stdc++.h"
using namespace std;
class solution68 {
public:
vector<int> exclusiveTime(int n, vector<string>& logs) {
vector<int>result(n,0);
vector<pair<int,int>>stack;
for(auto log:logs){
int pos1=log.find(":");
int pos2=log.rfind(":");
int id=std::atoi(log.substr(0,pos1).c_str());
string status=log.substr(pos1+1,pos2-pos1-1);
int timestamp=std::atoi(log.substr(pos2+1,log.size()).c_str());
pair<int,int>item= make_pair(id, timestamp);
if(status=="start"){
if(!stack.empty()){
result[stack.back().first]+=timestamp-stack.back().second;
stack.back().second=timestamp;
}
stack.emplace_back(item);
}
else{
result[id]+=timestamp-stack.back().second+1;
stack.pop_back();
if(!stack.empty()){
stack.back().second=timestamp+1;
}
}
}
return result;
}
};
#endif //LEETCODE_SOLUTION68_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。