LeetCode - 1299. Replace Elements with Greatest Element on Right Side(Array)*

YAMAMAMO·2022년 1월 31일
0

LeetCode

목록 보기
9/100

문제

https://leetcode.com/problems/replace-elements-with-greatest-element-on-right-side/

Given an array arr, replace every element in that array with the greatest element among the elements to its right, and replace the last element with -1.
After doing so, return the array.

파파고번역
배열 배열이 주어지면 해당 배열의 모든 요소를 오른쪽에 있는 요소 중 가장 큰 요소로 바꾸고 마지막 요소를 -1로 바꿉니다. 그런 다음 배열을 반환합니다.

Example 1:

Input: arr = [17,18,5,4,6,1]
Output: [18,6,6,6,1,-1]
Explanation:

  • index 0 --> the greatest element to the right of index 0 is index 1 (18).
  • index 1 --> the greatest element to the right of index 1 is index 4 (6).
  • index 2 --> the greatest element to the right of index 2 is index 4 (6).
  • index 3 --> the greatest element to the right of index 3 is index 4 (6).
  • index 4 --> the greatest element to the right of index 4 is index 5 (1).
  • index 5 --> there are no elements to the right of index 5, so we put -1.

Example 2:

Input: arr = [400]
Output: [-1]
Explanation: There are no elements to the right of index 0.

풀이

자바입니다

  • 최대값을 지정한다.
  • 뒤에서부터 배열을 반복한다.
  • 현재 배열의 값이 최대값보다 크면 최대값을 변경.
class Solution {
    public int[] replaceElements(int[] arr) {
        int max=-1; //최대값
        for(int i=arr.length-1;i>=0;i--){
            int tmp= arr[i]; //현재값
            arr[i]=max;
            if(tmp>max){
                max=tmp;
            }
        }
        return arr;
    }
}
profile
안드로이드 개발자

0개의 댓글