250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- BFS
- 백준
- SQL
- 원서
- dfs
- swexpertacademy
- the midnight library
- English
- 알고리즘 문제
- 삼성
- 코테
- sw expert academy
- sw expert
- D4
- 원서읽기
- nightroutine
- englishbook
- 알고리즘
- STUDYENGLISH
- 쉬운 알고리즘 문제
- readingbook
- PyQt
- 원서읽자
- MySQL
- 완전탐색
- 코테 대비
- 코테 준비
- 프로그래머스
- 코딩테스트
- 직무면접
Archives
- Today
- Total
시나브로
[코딩테스트 연습 _ 스택/큐] 탑 본문
728x90
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> heights) {
int box=heights.size();
vector<int> answer(box, 0);
vector<int> list;
for (int i = heights.size()-1; i >= 0; i--) {
if (list.size() != 0) {
while (1) {
if (list.size() != 0) {
if (heights[i] > heights[list.back()]) {
answer[list.back()] = i + 1;
list.pop_back();
}
else
break;
}
else
break;
}
}
list.push_back(i);
}
return answer;
}
https://programmers.co.kr/learn/courses/30/lessons/42588?language=cpp
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[코딩테스트 연습 _ 스택/큐] 기능 개발 (0) | 2020.03.13 |
---|---|
[코딩테스트 연습 _ 스택/큐] 다리를 지나는 트럭 (0) | 2020.03.13 |
[SQL 최고점 Kit _ JOIN] 보호소에서 중성화한 동물 (0) | 2020.01.07 |
[SQL 최고점 Kit _JOIN] 오랜 기간 보호한 동물 1 (0) | 2020.01.07 |
[SQL 최고점 Kit _ JOIN] 있는데요 없었습니다 (0) | 2020.01.07 |
Comments