본문 바로가기

Algorithm

[Algorithm] 프로그래머스 스택/큐 주식가격 in Java

728x90
반응형

주식가격

문제 설명

초 단위로 기록된 주식가격이 담긴 배열 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초간 가격이 떨어지지 않았습니다.

public class stack_queue_2 {
   public static void main(String[] args) {
      int[] prices = new int[]{1, 2, 3, 2, 3};

      solution(prices);
   }

   //풀이 - 순차적으로 들어가서 나온다.
   //시간복잡도
   //공간복잡도
   public static int[] solution(int[] prices) {
      int[] answer = new int[prices.length];
      Queue<Integer> queue = new LinkedList<>();

      for(int price : prices) {
         queue.offer(price);
      }

      //peek()에서 prices들과 가격 비교 time ++
      int idx = 0;
      int time = 0;
      while(!queue.isEmpty()){
         time = 0;
         for(int i=idx+1; i<prices.length; i++){
            if(queue.peek() <= prices[i]){
               time++;
            } else{
               time++;
               break;
            }
         }
         queue.poll();
         answer[idx] = time;
         idx ++;
      }

      return answer;
   }

   public static int[] solution1(int[] prices) {
      int[] answer = new int[prices.length];

      int time;

      for(int i=0; i<prices.length; i++){

         time=0;
         for(int j=i+1; j<prices.length; j++){
            if(prices[i] <= prices[j]){
               time++;
            } else {
               time++;
               break;
            }
         }
         answer[i] = time;
      }

      return answer;
   }

   public static int[] solution3(int[] prices) {
      int[] answer = new int[prices.length];
      int i = 0;
      Queue<Integer> queue = new LinkedList<>();

      for(int price : prices) {
         queue.offer(price);
      }

      while (!queue.isEmpty()) {
         int current = queue.poll();
         int size = queue.size();
         int count = 0;
         for(int j=0; j<prices.length; j++) {
            int temp = queue.poll();
            if (current <= temp) {
               count++;
            }else{
               count++;
               break;
            }
            queue.offer(temp);
         }
         answer[i] = count;
         i++;
      }

      for(int j =0; j<answer.length; j++) {
         System.out.println(answer[j]);
      }

      return answer;
   }
}

728x90
반응형