본문 바로가기
프로그래머스

[42588] 탑

by Jcoder 2018. 10. 20.


#include <iostream>
#include <vector>
using namespace std;
vector<int> solution(vector<int> heights)
{
vector<int> answer;
bool isReceive = false;
for (int i = 0; i < heights.size(); i++)
{
isReceive = false;
for (int j = i; j >= 0; j--)
{
if (heights[i] < heights[j])
{
answer.push_back(j + 1);
isReceive = true;
break;
}
}
if (!isReceive)
answer.push_back(0);
}
return answer;
}


'프로그래머스' 카테고리의 다른 글

[14406] 소수의 합  (0) 2018.10.28
[42840] 모의고사  (0) 2018.10.21
[42862] 체육복  (0) 2018.10.20
[42748] K번째수  (0) 2018.09.17
[42583] 주식가격  (0) 2018.09.14