문제 링크
https://programmers.co.kr/learn/courses/30/lessons/42584
C++ 풀이
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> prices) {
vector<int> answer;
int temp;
int s = prices.size();
for (int i = 0; i < s; i++) {
temp = 0;
for (int j = i + 1; j < s; j++, temp++) {
if (prices[i] > prices[j]) {
temp++;
break;
}
}
answer.push_back(temp);
}
return answer;
}
반응형
'알고리즘 · 코딩' 카테고리의 다른 글
[프로그래머스] 이상한 문자 만들기 (0) | 2020.04.21 |
---|---|
[프로그래머스] 호텔 방 배정 (0) | 2020.04.21 |
[프로그래머스] 쇠막대기 (0) | 2020.04.14 |
[프로그래머스] 디스크 컨트롤러 (0) | 2020.04.07 |
[프로그래머스] N개의 최소공배수 (0) | 2020.04.03 |