programmers [주식가격]

wi_label·2021년 1월 11일
1

Coding Test

목록 보기
4/88
post-thumbnail

주식가격

문제 설명

초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요.

제한사항

prices의 각 가격은 1 이상 10,000 이하인 자연수입니다.
prices의 길이는 2 이상 100,000 이하입니다.

입출력 예

prices | return
[1, 2, 3, 2, 3] | [4, 3, 1, 1, 0]

입출력 예 설명

1초 시점의 ₩1은 끝까지 가격이 떨어지지 않았습니다.
2초 시점의 ₩2은 끝까지 가격이 떨어지지 않았습니다.
3초 시점의 ₩3은 1초뒤에 가격이 떨어집니다. 따라서 1초간 가격이 떨어지지 않은 것으로 봅니다.
4초 시점의 ₩2은 1초간 가격이 떨어지지 않았습니다.
5초 시점의 ₩3은 0초간 가격이 떨어지지 않았습니다.

import java.util.*;

class Solution {
    public int[] solution(int[] prices) {
        //Queue solution
        Queue pricesQueue = new LinkedList();

        for(int price : prices){
            pricesQueue.offer(price);
        }
        
        int[] answer = new int[prices.length];
        int term = 0;
        int answerCnt = 0;
        Object pricesQueuePoll;
        while(!pricesQueue.isEmpty()){
            term = 0;
            pricesQueuePoll = pricesQueue.poll();
            for(int i = answerCnt + 1; i < prices.length; i++){
                if((int)pricesQueuePoll <= prices[i]) term++;
                else{
                    term++;
                    break;   
                }
            }
            answer[answerCnt] = term;
            answerCnt++;
        }
       
        return answer;
    }
}
profile
옥은 부서질 지언정 흰 빛을 잃지 않고, 대나무는 불에 탈 지언정 그 곧음을 잃으려 하지 않는다.

0개의 댓글