[programmers] 28. 주식가격
2021. 7. 1. 22:35
https://programmers.co.kr/learn/courses/30/lessons/42584
1. Problem
문제 설명
초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요.
제한사항
- prices의 각 가격은 1 이상 10,000 이하인 자연수입니다.
- prices의 길이는 2 이상 100,000 이하입니다.
입출력 예
pricesreturn
[1, 2, 3, 2, 3] | [4, 3, 1, 1, 0] |
입출력 예 설명
- 1초 시점의 ₩1은 끝까지 가격이 떨어지지 않았습니다.
- 2초 시점의 ₩2은 끝까지 가격이 떨어지지 않았습니다.
- 3초 시점의 ₩3은 1초뒤에 가격이 떨어집니다. 따라서 1초간 가격이 떨어지지 않은 것으로 봅니다.
- 4초 시점의 ₩2은 1초간 가격이 떨어지지 않았습니다.
- 5초 시점의 ₩3은 0초간 가격이 떨어지지 않았습니다.
2. Code
package programmers;
public class 주식가격 {
public static void main(String[] args) {
int[] prices = {1,2,3,2,3};
solution(prices);
}
public static int[] solution(int[] prices) {
int[] answer = new int[prices.length];
for(int i = 0; i < prices.length-1; i++) {
int n = prices[i];
boolean drop = false;
for(int j = i+1; j < prices.length; j++) {
if(n > prices[j]) {
answer[i] = j-i;
drop = true;
break;
}
}
if(!drop) answer[i] = prices.length-i-1;
}
answer[prices.length-1] = 0;
return answer;
}
public static int[] solution2(int[] prices) {
int[] answer = new int[prices.length];
for(int i = 0; i < prices.length; i++) {
for(int j = i+1; j < prices.length; j++) {
answer[i]++;
if(prices[i] > prices[j]) break;
}
}
return answer;
}
}
3. Report
solution은 내가 푼 코드이고 solution2는 다른 사람의 풀이이다.
걸리는 시간이 크게 차이 나지는 않지만
굉장히 간결한 코드다.. 바로 answer[i]++; 을 해주는게 인상깊었다.
'Algorithm > 문제' 카테고리의 다른 글
[programmers] 30. 멀쩡한 사각형 (0) | 2021.07.03 |
---|---|
[programmers] 29. 2개 이하로 다른 비트 (0) | 2021.07.01 |
[programmers] 27. 최댓값과 최솟값 (0) | 2021.07.01 |
[LeetCode] 26.Climbing Stairs (0) | 2021.06.24 |
[boostCamp] 25. 자가진단 문제 6번 (0) | 2021.06.23 |