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
- Programmers
- 오블완
- 언리얼엔진5
- TObjectPtr
- directx
- NRVO
- 2294
- baekjoon
- C++
- const
- algorithm
- 프로그래머스
- winapi
- UnrealEngine4
- IFileDialog
- UE5
- 티스토리챌린지
- 1563
- RootMotion
- GeeksForGeeks
- softeer
- Unreal Engine5
- UnrealEngine5
- Frustum
- DirectX11
- RVO
- 백준
- C
- 줄 세우기
- 팰린드롬 만들기
Archives
- Today
- Total
목록스택 수열 (1)
Game Develop
[Algorithm] Baekjoon 1874번 : 스택 수열
https://www.acmicpc.net/problem/1874 1874번: 스택 수열 1부터 n까지에 수에 대해 차례로 [push, push, push, push, pop, pop, push, push, pop, push, push, pop, pop, pop, pop, pop] 연산을 수행하면 수열 [4, 3, 6, 8, 7, 5, 2, 1]을 얻을 수 있다. www.acmicpc.net 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 41 42 43 44 int main(void) { ios_base::sync_with_stdio(0); cin.tie..
Algorithm/Baekjoon
2023. 9. 8. 03:36