본문 바로가기
알고리즘

[프로그래머스] 기능개발 - java

by 육빔 2024. 8. 11.
728x90
반응형

https://school.programmers.co.kr/learn/courses/30/lessons/42586

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

문제풀이

 

배열에 며칠이 걸릴지 계산한 배열을 기반으로 만약 뒤에 있는 것 보다 작으면 deque에 count를 넣고 크면 count를 증가시키는 반복문을 돌리고 마지막에 stream을 사용하여 디큐를 배열로 변환해준뒤 반환한다.

 

import java.util.*;
class Solution {
    public int[] solution(int[] progresses, int[] speeds) {
        ArrayDeque<Integer> stack = new ArrayDeque<>();
        
        int n = progresses.length;
        int arr[] = new int[n];
        
        for(int i=0; i<n; i++){
            arr[i] = (int)Math.ceil((100.0 - progresses[i]) / speeds[i]);
        }
        
        int maxValue = arr[0];
        int count = 0;
        
        for(int j=0; j<n; j++){
            if(arr[j] <= maxValue){
                count++;
            }else{
                stack.add(count);
                count = 1;
                maxValue = arr[j];
            }
        }
        stack.add(count);
        return stack.stream().mapToInt(Integer::intValue).toArray();
    }
}

 

완성

728x90
반응형