초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요.
prices의 각 가격은 1 이상 10,000 이하인 자연수입니다.
prices의 길이는 2 이상 100,000 이하입니다.
prices [1, 2, 3, 2, 3]
return [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) {
int[] answer = new int[prices.length];
Queue<Integer> q = new LinkedList<>();
//1.모든 배열을 큐에 집어넣음.
for(int i=0; i<prices.length; i++){
q.offer(prices[i]);
}
//2. 큐에서 맨 앞 하나를 빼면서 해당 숫자보다 큰 다음 숫자의 위치를 찾음.
boolean flag = true;
int count = 0 ;
while(!q.isEmpty()){
int firstPrice = q.poll();
int startIdx = prices.length - q.size();
for(int a = startIdx; a < prices.length; a++){
if(firstPrice > prices[a]){
answer[count] = (a-startIdx+1);
flag = false;
break;
}
}
//가격이 떨어진 시점이 없다면
if(flag){
answer[count] = q.size();
}
flag=true;
count++;
}
return answer;
}
}
class Solution {
public int[] solution(int[] prices) {
int len = prices.length;
int[] answer = new int[len];
int i, j;
for (i = 0; i < len; i++) {
for (j = i + 1; j < len; j++) {
answer[i]++;
if (prices[i] > prices[j])
break;
}
}
return answer;
}
}