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 | 31 |
Tags
- 코테
- swexpertacademy
- sw expert
- D4
- dfs
- 백준
- STUDYENGLISH
- 직무면접
- 코딩테스트
- sw expert academy
- the midnight library
- SQL
- MySQL
- 원서
- 프로그래머스
- 코테 대비
- English
- englishbook
- 원서읽기
- nightroutine
- BFS
- 완전탐색
- PyQt
- 알고리즘 문제
- 삼성
- 코테 준비
- 쉬운 알고리즘 문제
- 알고리즘
- 원서읽자
- readingbook
Archives
- Today
- Total
목록큐 (6)
시나브로
[코딩테스트 연습 _ 스택/큐] 다리를 지나는 트럭
#include #include #include using namespace std; int solution(int bridge_length, int weight, vector truck_weights) { int answer = 0; int time=0; int pass_point=0; int in_point=0; int box=truck_weights.size(); vectorlist; int rest_time=weight; while(1){ if(truck_weights.size()
알고리즘/프로그래머스
2020. 3. 13. 19:08
[코딩테스트 연습 _ 스택/큐] 탑
#include #include using namespace std; vector solution(vector heights) { int box=heights.size(); vector answer(box, 0); vector 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; } ht..
알고리즘/프로그래머스
2020. 3. 13. 17:11