-

[프로그래머스] 레벨 2 - 탑 본문

1-4. 프로그래머스

[프로그래머스] 레벨 2 - 탑

asdklfjlasdlfkj 2020. 2. 3. 14:40

https://programmers.co.kr/learn/courses/30/lessons/42588

 

코딩테스트 연습 - 탑 | 프로그래머스

수평 직선에 탑 N대를 세웠습니다. 모든 탑의 꼭대기에는 신호를 송/수신하는 장치를 설치했습니다. 발사한 신호는 신호를 보낸 탑보다 높은 탑에서만 수신합니다. 또한, 한 번 수신된 신호는 다른 탑으로 송신되지 않습니다. 예를 들어 높이가 6, 9, 5, 7, 4인 다섯 탑이 왼쪽으로 동시에 레이저 신호를 발사합니다. 그러면, 탑은 다음과 같이 신호를 주고받습니다. 높이가 4인 다섯 번째 탑에서 발사한 신호는 높이가 7인 네 번째 탑이 수신하고, 높이가 7

programmers.co.kr

프로그래머스 레벨 2 문제다.

쉽게 벡터 순회하면서 왼쪽으로 가다가 높이가 더 높은 것 만나면 해당 인덱스+1이 x번째 이므로 현재 i번째 answer에 이 인덱스+1을 push_back해주면 된다. 쉬움.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
 
vector<int> solution(vector<int> heights) {
    vector<int> answer;
    for(int i=0; i<heights.size(); i++){
        int cur_height = heights[i];
        bool found = false;
        for(int j=i-1; j>=0; j--){
            if(cur_height < heights[j]){
                found = true;
                answer.push_back(j+1);
                break;
            }
        }
        if(!found){
            answer.push_back(0);
        }
    }
    return answer;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

Comments