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
- 백트래킹
- VR
- 브루트포스
- 그리디 알고리즘
- 문자열
- DFS
- 유니온 파인드
- 다이나믹 프로그래밍
- 투 포인터
- 유니티
- 누적 합
- c++
- 트리
- 우선순위 큐
- Team Fortress 2
- 알고리즘
- 정렬
- 수학
- Unreal Engine 5
- XR Interaction Toolkit
- 스택
- 구현
- 그래프
- ue5
- 자료구조
- 재귀
- 다익스트라
- 백준
- BFS
- 시뮬레이션
Archives
- Today
- Total
목록숫자판 점프 C++ (1)
1일1알

1. 백트래킹으로 5번 이동하는 경우를 모두 구한다. 2. 모든 칸에 대하여 1에서 구한 이동하는 경우를 적용한다. 3. 2의 과정에서 6자리수를 만들 수 있으면 그 수를 set에 넣는다. 4. set의 size를 출력한다. #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; vector board(5, vector(5)); vector dirV; set s; int dRow[4] = { -1,0,1,0 }; int dCol[4] = { 0,1,0,-1 }; void Sol..
알고리즘
2022. 1. 16. 12:56