일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- RVO
- Frustum
- 오블완
- 1563
- softeer
- DirectX11
- directx
- 팰린드롬 만들기
- 언리얼엔진5
- UnrealEngine5
- RootMotion
- Programmers
- TObjectPtr
- C++
- algorithm
- 줄 세우기
- C
- 프로그래머스
- NRVO
- 백준
- IFileDialog
- GeeksForGeeks
- 2294
- UE5
- UnrealEngine4
- 티스토리챌린지
- const
- winapi
- Unreal Engine5
- baekjoon
- Today
- Total
목록수열 (2)
Game Develop
https://www.acmicpc.net/problem/2559 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354#include iostream>#include string>#include map>#include vector>#include algorithm>#include math.h>#include queue>#include functional>#include memory.h>#include deque>#include set>#include unordered_map>#include stack>#include numeric> using namespace std; int ..
https://www.acmicpc.net/problem/2491 2491번: 수열 0에서부터 9까지의 숫자로 이루어진 N개의 숫자가 나열된 수열이 있다. 그 수열 안에서 연속해서 커지거나(같은 것 포함), 혹은 연속해서 작아지는(같은 것 포함) 수열 중 가장 길이가 긴 것을 찾 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 int n; int arr[100001] = { 0 }; int answer = ..