728x90
300x250
https://programmers.co.kr/learn/courses/30/lessons/42584
왜 문제분류를 스택/큐로 해두셨는지는 모르겠지만.. 이중 for문으로 구현했다.
<풀이>
1. 현재 price를 받아준다.
2. 현재 주식가격과 그 이후에 들어오는 주식가격의 차이를 비교한다.
3. 가격이 유지되거나 올라가면 cnt ++, 가격이 떨어지면 break;
class Solution {
public int[] solution(int[] prices) {
int[] answer = new int[prices.length];
for(int i = 0 ; i<prices.length;i++) {
int cnt = 0;
for(int j = i+1 ; j < prices.length;j++) {
cnt++;
if(prices[i]>prices[j])
break;
}
answer[i]=cnt;
}
// for(int i : answer ){
// System.out.println(i);
// }
return answer;
}
}
728x90
'알고리즘 > 그 외' 카테고리의 다른 글
백준 5585번: 거스름돈 [그리디][Greedy] - Java (0) | 2020.10.01 |
---|---|
백준 11047번: 동전 0 [그리디][Greedy] - Java (0) | 2020.10.01 |
프로그래머스[Level2] - 124나라의 숫자 (0) | 2020.08.28 |
프로그래머스[Level2] - 스킬 트리 [Summer/Winter Coding(~2018)] (0) | 2020.08.28 |
[JAVA] 알고리즘 달팽이 배열 - 직사각형 (0) | 2020.07.23 |