티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/42588
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> heights) {
vector<int> answer(heights.size(), 0);
for(int i=heights.size()-1; i>=0; i--) {
for(int j=i-1; j>=0; j--) {
if(heights[i] < heights[j]) {
answer[i] = j + 1;
break;
}
}
}
return answer;
}
for문을 줄일 수 있는 방법을 강구해봐야겠다..
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[C++]프로그래머스 - 도둑질(level4) (0) | 2019.11.22 |
---|---|
[C++]프로그래머스 - 네트워크(level3) (0) | 2019.11.22 |
[C++]프로그래머스 - 가운데 글자 가져오기(level1) (0) | 2019.11.21 |
[Python]프로그래머스 - K번째수(level1) (0) | 2019.11.17 |
[Python]프로그래머스 - 2*n타일링(level3) (0) | 2019.11.12 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 재귀
- combination
- programmers
- 파이썬
- 백준
- 문자열
- dictionary
- 힙
- C++
- 순열
- 문자열처리
- 딕셔너리
- SW Expert
- 우선순위큐
- Python
- 코딩테스트
- 2019 Kakao Blind Recruitment
- hash
- 2020 KAKAO BLIND RECRUITMENT
- BOJ
- 해시
- 프로그래머스
- 완전탐색
- left join
- 괄호
- SWExpert
- 구현
- Permutation
- 정렬
- 스택
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함