초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요.
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> prices) {
vector<int> answer(prices.size());
for(int i=0;i<prices.size();i++) {
for(int j=i+1;j<prices.size();j++) {
answer[i]++;
if(prices[i] > prices[j]) {
break;
}
}
}
return answer;
}
스택/큐 문제였는데 다른 방법으로 풀어버렸다..
다음에 다시 풀어봐야지.. ㅎㅎ~