当前位置:网站首页>1403. 非递增顺序的最小子序列
1403. 非递增顺序的最小子序列
2022-08-04 14:29:00 【anieoo】
原题链接:1403. 非递增顺序的最小子序列
solution:
class Solution {
public:
vector<int> minSubsequence(vector<int>& nums) {
sort(nums.begin(), nums.end());
int sum = 0;
for(auto &x : nums) sum += x;
vector<int> res; //返回值
int s = 0,j = nums.size() - 1;
while(j >= 0 && s <= sum / 2) {
res.push_back(nums[j]);
s += nums[j--];
}
return res;
}
};
边栏推荐
猜你喜欢
编译型与解释型编程语言的区别
Button control switch 4017 digital circuit chip
zabbix自定义图形
MySQL性能指标TPS\QPS\IOPS如何压测?
Sum of four squares, laser bombs
Find My技术|防止你的宠物跑丢,苹果Find My技术可以帮到你
技术分享| 小程序实现音视频通话
【 HMS core 】 【 Media 】 online video editing service 】 【 material can't show, or network anomalies have been Loading state
JCMsuite应用:倾斜平面波传播透过光阑的传输
Unity插件:使用PopulationSystem制作行走交流的路人
随机推荐
本周讨论用户体验:Daedalus 的 Nemo 加入 Ambire,探索加密海洋
Qt的QItemDelegate使用
[The Art of Hardware Architecture] Study Notes (1) The World of Metastability
信创是什么意思?涉及哪些行业?为什么要发展信创?
Centos7 install mysql version rapidly
基于 Next.js实现在线Excel
[LeetCode] 38. Appearance sequence
零基础可以转行软件测试吗 ?这篇文章告诉你
【 HMS core 】 【 Media 】 online video editing service 】 【 material can't show, or network anomalies have been Loading state
两款移相振荡器的对比
世间几乎所有已知蛋白质结构,都被DeepMind开源了
实际工作中的高级技术(训练加速、推理加速、深度学习自适应、对抗神经网络)
Is there a replacement for the LM2596?LM2576 can
Crawler - basic use of selenium, no interface browser, other uses of selenium, cookies of selenium, crawler cases
属于程序猿的浪漫
自监督学习未来是掩码自编码器?KAIST最新《自监督学习掩码自编码器》研究进展
JCMsuite应用:倾斜平面波传播透过光阑的传输
开放麒麟 openKylin 版本规划敲定:10 月发布 0.9 版并开启公测,12 月发布 1.0 版
"C pitfalls and pitfalls" reading summary
【模型部署与业务落地】基于量化芯片的损失分析