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
- 팰린드롬 만들기
- UnrealEngine4
- DirectX11
- C
- 줄 세우기
- GeeksForGeeks
- const
- IFileDialog
- C++
- 1563
- Programmers
- 백준
- 프로그래머스
- algorithm
- UE5
- 오블완
- RootMotion
- Frustum
- NRVO
- DeferredRendering
- 티스토리챌린지
- softeer
- baekjoon
- 2294
- RVO
- directx
- winapi
- UnrealEngine5
- 언리얼엔진5
- Unreal Engine5
Archives
- Today
- Total
Game Develop
[Algorithm] Programmers :: 택배상자 본문
https://school.programmers.co.kr/learn/courses/30/lessons/131704
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
32
33
34
35
36
37
38
39
40
|
int solution(vector<int> order)
{
int answer = 0;
stack<int> sub;
int curBoxNum = 1; // 컨베이어벨트에서 꺼낼 수 있는 상자.
int orderIndex = 0;
while (1)
{
if (orderIndex >= order.size() - 1) orderIndex = order.size() - 1;
if (order[orderIndex] > curBoxNum)
{
sub.push(curBoxNum);
++curBoxNum;
continue;
}
if (curBoxNum == order[orderIndex])
{
++curBoxNum;
++orderIndex;
++answer;
continue;
}
if (order[orderIndex] < curBoxNum)
{
if (sub.size() > 0 && sub.top() == order[orderIndex])
{
sub.pop();
++answer;
++orderIndex;
}
else break;
}
}
return answer;
}
|
cs |
음... 의외로 좀 걸렸던 문제. 실제 코딩테스트였다면 진짜 큰일날 뻔 했다.
'Algorithm > Programmers' 카테고리의 다른 글
[Algorithm] Programmers :: 우박수열 정적분 (0) | 2023.06.08 |
---|---|
[Algorithm] Programmers :: 롤케이크 자르기 (0) | 2023.06.08 |
[Algorithm] Programmers :: 연속 부분 수열 합의 개수 (0) | 2023.06.07 |
[Algorithm] Programmers :: 혼자 놀기의 달인 (0) | 2023.06.07 |
[Algorithm] Programmers :: 양궁대회 (1) | 2023.06.06 |