博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
删除整数字符串删除k个数后最小的数
阅读量:6567 次
发布时间:2019-06-24

本文共 740 字,大约阅读时间需要 2 分钟。

暴力做出来了,超时了,伤心。

#include<iostream>

#include<vector>
#include<algorithm>
#include<map>
#include<string>
#include<iomanip>
using namespace std;
void dfs(const string &s, string& v, int nsize, string&res,int start) {
if (nsize == 0) {
res > v ? res = v : res = res;;
//v.clear();
return;
}
for (int i = start; i < s.length(); i++) {
v = v + s[i];
dfs(s, v, nsize-1, res,i+1);
v.pop_back();
}
}
void f(string s,int temp) {
int size = s.length();
int nsize = size - temp;
string res=s;
string v = {};
dfs(s, v, nsize,res,0);
//sort(res.begin(), res.end());
cout << res << endl;
}

int main()

{
//vector<string>temp;
string s; int temp;
while (cin) {
cin >> s;
cin >> temp;
f(s,temp);
}

return 0;
}

转载于:https://www.cnblogs.com/zzas0/p/10638770.html

你可能感兴趣的文章
英特尔开源计算机视觉数据标签工具CVAT,加速数据注释
查看>>
consule服务注册和发现 安装 部署
查看>>
Map集合案例
查看>>
《FPGA全程进阶---实战演练》第十一章 VGA五彩缤纷
查看>>
第七次课程作业
查看>>
C++ 文本查询2.0(逻辑查询)
查看>>
Objective-C学习总结-13协议1
查看>>
web学习方向
查看>>
A*算法实现
查看>>
第一周 从C走进C++ 002 命令行参数
查看>>
[转]【NoSQL】NoSQL入门级资料整理(CAP原理、最终一致性)
查看>>
RequireJS进阶(二)
查看>>
我设计的网站的分布式架构
查看>>
linux extract rar files
查看>>
Knockout.Js官网学习(监控属性Observables)
查看>>
ORA-12514: TNS: 监听程序当前无法识别连接描述符中请求的服务解决
查看>>
azure之MSSQL服务性能测试
查看>>
Android BitmapFactory.Options
查看>>
前端构建:Less入了个门
查看>>
phonegap(cordova) 自己定义插件代码篇(三)----支付宝支付工具整合
查看>>