728x90
728x90
https://leetcode.com/problems/array-partition/description/
문제
문제 분석
- (1, 2), (3, 4) 처럼 묶어서 min을 하게되면 결국 오름차순 정렬 후 짝수 번째(0 포함)에 있는 요소들의 합이 바로 결과가 됩니다.
풀이 1
class Solution {
public:
int arrayPairSum(vector<int>& nums) {
sort(nums.begin(),nums.end());
for(int i=1;i<nums.size();i=i+2)
{
nums[i]=nums[i-1];
}
int r=0;
for(auto i:nums)
{
r+=i;
}
return r/2;
}
};
728x90
300x250
'Problem Solving > LeetCode' 카테고리의 다른 글
[LeetCode] C++ 121. Best Time to Buy and Sell Stock (0) | 2024.08.16 |
---|---|
[LeetCode] C++ 238. Product of Array Except Self (0) | 2024.08.16 |
[LeetCode] C++ 15. 3Sum (0) | 2024.08.15 |
[LeetCode] C++ 42. Trapping Rain Water (0) | 2024.08.12 |
[LeetCode] C++ 1. Two Sum (0) | 2024.08.05 |