欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

1038 Recover the Smallest Number

程序员文章站 2024-03-17 14:26:28
...

1038 Recover the Smallest Number

解题代码

#include<cstdio>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std;
bool cmp(string a, string b) {
	return a + b < b + a;
}
int main() {
	int num;
	cin >> num;
	string figure[10000], ans;
	for (int i = 0; i < num; i++) cin >> figure[i];
	sort(figure, figure + num, cmp);
	for (int i = 0; i < num; i++) ans += figure[i];
	while(ans[0] == '0') ans.erase(ans.begin());
	if (ans.size() == 0) cout << 0;
	else cout << ans;
 	return 0;
}

测试结果

1038 Recover the Smallest Number

问题整理

1.简单贪心。
2.string 还是和iostream一起用比较好,省了cat和len等复杂处理,还可以+=,重载强大。
3.通过erase很方便去除前导零。