본문 바로가기
LeetCode/Array & Hashing

[LeetCode][Kotlin] 496. Next Greater Element I

by jinwo_o 2024. 8. 14.

496. Next Greater Element I

The next greater element of some element x in an array is the first greater element that is to the right of x in the same array.

You are given two distinct 0-indexed integer arrays nums1 and nums2, where nums1 is a subset of nums2.

 

For each 0 <= i < nums1.length, find the index j such that nums1[i] == nums2[j] and determine the next greater element of nums2[j] in nums2. If there is no next greater element, then the answer for this query is -1.

 

Return an array ans of length nums1.length such that ans[i] is the next greater element as described above.

배열에 있는 일부 요소 x의 다음으로 큰 요소는 동일한 배열에서 x의 오른쪽에 있는 첫 번째 큰 요소입니다. 

0부터 인덱스가 지정된 두 개의 서로 다른 정수 배열 nums1과 nums2가 제공됩니다. 여기서 nums1은 nums2의 하위 집합입니다. 

각 0 <= i < nums1.length에 대해 nums1[i] == nums2[j]가 되는 인덱스 j를 찾고 nums2에서 nums2[j]의 다음으로 큰 요소를 결정합니다. 다음으로 큰 요소가 없으면 이 쿼리에 대한 대답은 -1입니다. 

위에서 설명한 대로 ans[i]가 다음으로 큰 요소가 되도록 길이가 nums1.length인 배열 ans를 반환합니다.

 

Example 1:

Input: nums1 = [4,1,2], nums2 = [1,3,4,2]

Output: [-1,3,-1]

Explanation: The next greater element for each value of nums1 is as follows:

- 4 is underlined in nums2 = [1,3,4,2]. There is no next greater element, so the answer is -1.

- 1 is underlined in nums2 = [1,3,4,2]. The next greater element is 3.

- 2 is underlined in nums2 = [1,3,4,2]. There is no next greater element, so the answer is -1.

 

Example 2:

Input: nums1 = [2,4], nums2 = [1,2,3,4]

Output: [3,-1]

Explanation: The next greater element for each value of nums1 is as follows:

- 2 is underlined in nums2 = [1,2,3,4]. The next greater element is 3.

- 4 is underlined in nums2 = [1,2,3,4]. There is no next greater element, so the answer is -1.

 

Constraints:

  • 1 <= nums1.length <= nums2.length <= 1000
  • 0 <= nums1[i], nums2[i] <= 10^4
  • All integers in nums1 and nums2 are unique.
  • All the integers of nums1 also appear in nums2.

코드 1

  • nums1 을 순회하면서 각 원소에 대해 nums2 의 해당 인덱스 다음부터 자신보다 큰 값을 찾는다.
class Solution {
    fun nextGreaterElement(nums1: IntArray, nums2: IntArray): IntArray {
        val answer = mutableListOf<Int>()

        nums1.forEach {
            var find = false
            for (i in nums2.indexOf(it) + 1..nums2.lastIndex) {
                if (it < nums2[i]) {
                    answer.add(nums2[i])
                    find = true
                    break
                }
            }
            if (!find) answer.add(-1)
        }

        return answer.toIntArray()
    }
}

 

코드 2

  • 배열에 nums1 의 크기만큼  -1 을 추가하여 nums2 중에 큰 요소가 없는 경우를 방지한다.
  • nums1 의 각 원소에 대해 인덱스를 Map 형태로 저장한다.
  • nums2 를 순회하면서 nums1 의 원소일 경우 해당 인덱스 다음부터 자신보다 큰 값을 찾는다.
class Solution {
    fun nextGreaterElement(nums1: IntArray, nums2: IntArray): IntArray {
        val answer = IntArray(nums1.size) { -1 }

        val hm = HashMap<Int, Int>()
        nums1.forEachIndexed { i, v -> hm[v] = i }

        nums2.forEachIndexed { i, v ->
            if (v in hm) {
                for (j in i + 1..nums2.lastIndex) {
                    if (nums2[j] > v) {
                        answer[hm[v]!!] = nums2[j]
                        break
                    }
                }
            }
        }

        return answer
    }
}

 

코드 3

  • 배열에 nums1 의 크기만큼  -1 을 추가하여 nums2 중에 큰 요소가 없는 경우를 방지한다.
  • nums1 의 각 원소에 대해 인덱스를 Map 형태로 저장한다.
  • nums2 를 순회하면서 스택에 저장된 마지막 원소(nums1의 원소이면서 이전에 나온 nums2 원소)가 자신보다 클 때까지 배열의 원소를 교체하고, nums1 의 원소이면 스택에 추가한다.
class Solution {
    fun nextGreaterElement(nums1: IntArray, nums2: IntArray): IntArray {
        val res = IntArray(nums1.size) { -1 }

        val hm = HashMap<Int, Int>()
        nums1.forEachIndexed { i, v -> hm[v] = i }

        val stack = ArrayDeque<Int>()
        for (current in nums2) {
            while (stack.isNotEmpty() && current > stack.last()) {
                val element = stack.removeLast()
                res[hm[element]!!] = current
            }
            if (current in hm) stack.add(current)
        }

        return res
    }
}