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
- 언리얼 플러그인
- 언리얼 커스텀 플러그인
- OS
- 2단계로킹
- 셰그먼트트리
- 데이터베이스 배움터
- 민겸수
- 실습
- 백준 1253번
- 1967번
- SQL
- UnrealMP
- 비재귀셰그먼트
- 트랜잭션 관리
- objtofbx
- 1253번
- 의미와 무의미의 경계에서
- 5639
- UActor
- 1759번
- command not found
- 백준
- FBX
- oracle
- C++
- Unreal
- Linux
- Security
- 오손데이터읽기
- hackerank
Archives
- Today
- Total
목록정수삼각형 (1)
fatalite
정수삼각형 - 백준 1932
Info 실버 1, 다이나믹 프로그래밍 Solution #include #include using namespace std; int n; vector triangle; vector maxTriangle; int findMax(int depth, int OrderNumber) { if (n == 1) { return triangle[0][0]; } if (n == 2) { return triangle[0][0] + max(triangle[1][0], triangle[1][1]); } if (depth == n - 2) { return triangle[depth][OrderNumber] + max(triangle[depth + 1][OrderNumber], triangle[depth + 1][OrderNum..
코딩 인터뷰/C++
2023. 4. 4. 09:08