Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 릿코드풀기
- python Leetcode
- 릿코드
- 파이썬 프로그래머스
- 파이썬알고리즘풀기
- python 릿코드
- python zip_longest
- LeetCode
- python 알고리즘
- 잇츠디모
- python priority queue
- leetcode풀이
- 코틀린기초
- 파이썬릿코드
- 릿코드풀이
- leetcode 풀기
- 파이썬릿코드풀기
- leetcode풀기
- 파이썬알고리즘
- 파이썬 알고리즘 풀기
- python sorted
- 릿코드 풀기
- python xor
- 파이썬 릿코드
- 파이썬 알고리즘
- binary search
- 릿코드 파이썬
- 알고리즘풀이
- 알고리즘풀기
- 상가수익률계산기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1913. Maximum Product Difference Between Two Pairs 본문
알고리즘/LeetCode
LeetCode 풀기 - 1913. Maximum Product Difference Between Two Pairs
앤테바 2021. 11. 5. 19:59반응형
1913. Maximum Product Difference Between Two Pairs
https://leetcode.com/problems/maximum-product-difference-between-two-pairs/
문제)
솔루션1)
- 시간 복잡도 : O(nlogn)
- 공간 복잡도 : O(1)
class Solution:
def maxProductDifference(self, nums: List[int]) -> int:
nums.sort()
return nums[-1] * nums[-2] - nums[0] * nums[1]
솔루션2)
- 시간 복잡도 : O(n)
- 공간 복잡도 : O(1)
class Solution:
def maxProductDifference(self, nums: List[int]) -> int:
min1, min2 = 10000, 10000
max1, max2 = 1, 1
for n in nums:
if n < min1:
min1, min2 = n, min1
elif n < min2:
min2 = n
if n > max2:
max1, max2 = max2, n
elif n > max1:
max1 = n
return max1 * max2 - min1 * min2
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 1844. Replace All Digits with Characters (0) | 2021.11.05 |
---|---|
LeetCode 풀기 - 1816. Truncate Sentence (0) | 2021.11.05 |
LeetCode 풀기 - 70. Climbing Stairs (0) | 2021.11.05 |
LeetCode 풀기 - 380. Insert Delete GetRandom O(1) (0) | 2021.11.03 |
LeetCode 풀기 - 1832. Check if the Sentence Is Pangram (0) | 2021.11.03 |
Comments