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
- const
- C
- directx
- 오블완
- 2294
- DirectX11
- winapi
- IFileDialog
- Frustum
- UE5
- 프로그래머스
- baekjoon
- 티스토리챌린지
- NRVO
- C++
- 팰린드롬 만들기
- 백준
- Unreal Engine5
- UnrealEngine4
- 줄 세우기
- Programmers
- 1563
- RVO
- UnrealEngine5
- GeeksForGeeks
- 언리얼엔진5
- algorithm
- softeer
- RootMotion
- DeferredRendering
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