Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 레벨3
- 브루트포스
- 프로그래머스
- 코딩스킬
- 2018
- dfs
- Set
- BFS
- priority_queue
- 완전탐색
- 문자열
- 삼성SW테스트
- 모의SW역량테스트
- 백트래킹
- 이런게4문제
- C++
- STL
- 시뮬레이션
- 레벨2
- swea
- 코딩테스트
- 삼성SW역량테스트
- dp
- 삼성
- Sort
- Map
- find
- 백준
- KAKAO
- substr
Archives
- Today
- Total
-
[프로그래머스] 레벨 2 - 탑 본문
https://programmers.co.kr/learn/courses/30/lessons/42588
프로그래머스 레벨 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 |
'1-4. 프로그래머스' 카테고리의 다른 글
[프로그래머스] 레벨 2 - 기능개발 (0) | 2020.02.03 |
---|---|
[프로그래머스] 레벨 2 - 프린터 (0) | 2020.02.03 |
[프로그래머스] 레벨 2 - 카카오프렌즈 컬러링북 (2017 카카오코드 예선) (0) | 2020.02.03 |
[프로그래머스] 레벨 2 - 124 나라의 숫자 (0) | 2020.02.02 |
[프로그래머스] 레벨 3 - N으로 표현 (0) | 2020.01.31 |
Comments