일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- directx
- Frustum
- UnrealEngine5
- algorithm
- C
- RootMotion
- 백준
- baekjoon
- UnrealEngine4
- 티스토리챌린지
- RVO
- Programmers
- 1563
- 언리얼엔진5
- 오블완
- DeferredRendering
- UE5
- softeer
- GeeksForGeeks
- 프로그래머스
- Unreal Engine5
- IFileDialog
- winapi
- 팰린드롬 만들기
- const
- 줄 세우기
- NRVO
- DirectX11
- C++
- 2294
- Today
- Total
목록줄 세우기 (3)
Game Develop
https://www.acmicpc.net/problem/7570 7570번: 줄 세우기입력은 2 개의 줄로 이루어져 있다. 첫 줄에는 어린이 수를 나타내는 정수가 주어진다. 둘째 줄에는 처음에 줄서있는 어린이들의 번호가 차례대로 주어진다. 주어진 번호들 사이에는 공백이 하www.acmicpc.net1234567891011121314151617181920212223242526272829303132333435363738394041#include iostream>#include string>#include map>#include vector>#include algorithm>#include math.h>#include queue>#include functional>#include sstream>#includ..
https://www.acmicpc.net/problem/2252 2252번: 줄 세우기 첫째 줄에 N(1 ≤ N ≤ 32,000), M(1 ≤ M ≤ 100,000)이 주어진다. M은 키를 비교한 회수이다. 다음 M개의 줄에는 키를 비교한 두 학생의 번호 A, B가 주어진다. 이는 학생 A가 학생 B의 앞에 서야 한다는 의 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 using namespace std; int n, m, a, b; bool visited[32001] = { false }; ..
https://www.acmicpc.net/problem/2631 2631번: 줄세우기 KOI 어린이집에는 N명의 아이들이 있다. 오늘은 소풍을 가는 날이다. 선생님은 1번부터 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 int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, input; int dp[201] = { 0 }; vector childs; int maxNum ..