320x100
문제 : https://leetcode.com/problems/best-sightseeing-pair/
투포인터로 풀었다.
배열 A를 1 인덱스부터 탐색하면서 탐색 중인 원소를 j 인덱스로 본다.A[i] + A[j] + i - j
의 최대값이 정답이다.
i 인덱스는 A[i] <= A[j] + j - i
인 경우 j로 갱신된다.
시간복잡도는 O(N)
소스코드 : https://gist.github.com/fpdjsns/4ebabdcb84c705631b8e33982741baab
320x100
'알고리즘 문제 > Leetcode' 카테고리의 다른 글
[leetcode] 1028. Recover a Tree From Preorder Traversal (0) | 2019.04.20 |
---|---|
[leetcode] 1020. Number of Enclaves (0) | 2019.04.08 |
[leetcode][1014] Capacity To Ship Packages Within D Days (0) | 2019.03.22 |
[leetcode][1013] Pairs of Songs With Total Durations Divisible by 60 (0) | 2019.03.17 |
[leetcode][1009] Complement of Base 10 Integer (0) | 2019.03.17 |
댓글