当前位置:网站首页>数组与字符串12-数组拆分
数组与字符串12-数组拆分
2022-08-03 05:25:00 【花开花落夏】
数组拆分
一 题目
来源:leetcode官网
给定长度为 2n 的整数数组 nums ,你的任务是将这些数分成 n 对, 例如 (a1, b1), (a2, b2), …, (an, bn) ,使得从 1 到 n 的 min(ai, bi) 总和最大。返回该最大总和 。
二 解题
将字符串排序,最小的和次小的一组,再次和更次一组,依次排,这样就能取到第二大,第四大等等的元素,使得min(ai, bi) 总和最大。
class Solution {
public int arrayPairSum(int[] nums) {
int tmp;
int result=0;
Arrays.sort(nums);
tmp=0;
while (tmp< nums.length){
result+=nums[tmp];
tmp+=2;
}
return result;
}
}
边栏推荐
猜你喜欢
增强光学系统设计 | Zemax 全新 22.2 版本产品现已发布!
稳压二极管的工作原理及稳压二极管使用电路图
自监督论文阅读笔记 DenseCL:Dense Contrastive Learning for Self-Supervised Visual Pre-Training
常见的电子元器件分类介绍
电子元器件和电子元件的区别有那些?
001_旭日X3派初探:开箱测试
中空编码器的作用——唯样商城
PCB设计经验之模拟电路和数字电路区别为何那么大
9. Please introduce the class loading process, what is the parent delegation model?
自监督论文阅读笔记 Multi-motion and Appearance Self-Supervised Moving Object Detection
随机推荐
[frp intranet penetration]
ZEMAX | 如何创建复杂的非序列物体
A.1#【内存管理】——1.1.4 node: 初始化
C# 数组之回溯法
MCU接收串口字符型数据转换成数据型数据
002_旭日X3派初探:TogetherROS安装
八、抽象类的接口的区别
自监督论文阅读笔记 Self-supervised Learning in Remote Sensing: A Review
Delightful Nuxt3 Tutorial (2): Build a Blog Quickly and Easily
自监督论文阅读笔记 S3Net:Self-supervised Self-ensembling Network for Semi-supervised RGB-D Salient Object Det
JS--正则表达式
IPC 通信 - IPC
page fault-页异常流程
g++参数说明
自监督论文阅读笔记 SimCLRV2 Big Self-Supervised Models are Strong Semi-Supervised Learners
STM32启动文件的选择
自监督论文阅读笔记 Self-Supervised Deep Learning for Vehicle Detection in High-Resolution Satellite Imagery
ZEMAX | 如何创建简单的非序列系统
double型数据转字符串后通过MCU串口发送
常见的电容器有哪些?唯样商城