关注
#include <bits/stdc++.h>
using namespace std;
int main()
{
int x;
vector<int> nums;
while(cin >> x){
nums.push_back(x);
}
auto cmp = [](const int& a, const int& b){
return to_string(a) + to_string(b) < to_string(b) + to_string(a);
};
sort(nums.begin(), nums.end(), cmp);
string s;
for(auto a : nums)
s += to_string(a);
int index = 0;
while(index < s.size() && s[index] == '0')
index++;
if(index == s.size())
cout << 0 << endl;
else
cout << s.substr(index) << endl;
return 0;
} 第二题直接调正则库解决了= = #include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
while(cin >> s){
regex pattern("[-]?\\d+");
auto numBeg = sregex_iterator(s.begin(), s.end(), pattern);
auto numEnd = sregex_iterator();
int res = 0;
for(auto i = numBeg; i != numEnd; ++i){
smatch match = *i;
string t = match.str();
res += stoi(t);
}
cout << res << endl;
}
}
查看原帖
点赞 评论
相关推荐
今天 01:43
University of Glasgow golang 点赞 评论 收藏
分享
走呀走:华子二面可能会有场景题的,是有些开放性的问题了
点赞 评论 收藏
分享
11-24 17:07
西南交通大学 交易师 点赞 评论 收藏
分享
牛客热帖
更多
正在热议
更多
# 你的秋招白月光和意难平公司 #
23431次浏览 204人参与
# 比亚迪求职进展汇总 #
815778次浏览 3142人参与
# 百度秋招 #
58569次浏览 396人参与
# 你想跟着什么样领导? #
15685次浏览 148人参与
# 深信服求职进展汇总 #
238597次浏览 1803人参与
# 十一月总结 #
27430次浏览 257人参与
# 机械人晒出你的简历 #
140173次浏览 864人参与
# 什么样的背景能拿SSP? #
120878次浏览 421人参与
# 从夯到拉,评价编程语言 #
12903次浏览 104人参与
# 如果今天是你的last day,你会怎么度过? #
54597次浏览 311人参与
# 机械人还在等华为开奖吗? #
283159次浏览 1445人参与
# 职场上哪些事情令人讨厌 #
28426次浏览 112人参与
# 找实习是选平台还是选业务? #
17260次浏览 188人参与
# 硬件人秋招进展 #
251741次浏览 3941人参与
# 应届生进小公司有什么影响吗 #
102551次浏览 1090人参与
# 巨人网络工作体验 #
69521次浏览 499人参与
# 考研失败就一定是坏事吗? #
153984次浏览 1090人参与
# 分享一个让你热爱工作的瞬间 #
49562次浏览 425人参与
# 影石Insta360求职进展汇总 #
164086次浏览 1331人参与
# xxx岗位的一天 #
16876次浏览 147人参与
# 哪一瞬间让你觉得工作好累 #
17898次浏览 197人参与