加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
xiecheng2.cpp 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
jamesjd_handsome 提交于 2020-04-03 11:28 . hahah
6
0,30
0,50
10,20
15,30
20,50
20,65
#include <iostream>
#include <vector>
#include <numeric>
#include <limits>
#include <algorithm>
using namespace std;
/*请完成下面这个函数,实现题目要求的功能
当然,你也可以不按照下面这个模板来作答,完全按照自己的想法来 ^-^
******************************开始写代码******************************/
int calcMinStaff() {
int n;
cin>>n;
vector<pair<int,int>> vc;
for(int i=0;i<n;i++){
int x,y;
char b;
cin>>x>>b>>y;
cout<<x<<" "<<y<<endl;
vc.push_back(pair<int,int>(x,y));
}
sort(vc.begin(),vc.end(),[](pair<int,int> &p1,pair<int,int> &p2)->bool{return p1.first<p2.first; });
vector<int> way;
for(auto p:vc){
auto iter=upper_bound(way.begin(),way.end(),p.first)-1;
if(iter==way.end()-1)
way.push_back(p.second);
else{
way.erase(iter);
auto ins=lower_bound(way.begin(),way.end(),p.second);
way.insert(ins,p.second);
}
}
return way.size();
}
/******************************结束写代码******************************/
int main() {
int res;
res = calcMinStaff();
cout << res << endl;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化