1 Star 0 Fork 0

gcc/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
solution68.h 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
gcc421 提交于 2023-09-08 17:35 . 栈与递归
//
// 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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gcc421/leetcode.git
git@gitee.com:gcc421/leetcode.git
gcc421
leetcode
leetcode
master

搜索帮助