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

백트래킹을 이용하여 벽을 3개를 세운 모든 경우를 구하고 각 경우마다 bfs를 통해 바이러스가 퍼지는 것을 시뮬레이션 한 뒤, 그 중 안전지대가 가장 많이 나온 경우를 출력하였다. #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; int n, m; vector v(8, vector(8, 0)); vector visited(8, vector(8, false)); int ans = -1; int wall = 3; int posR[4] = { -1,0,1,0 }; int pos..
알고리즘
2021. 12. 28. 12:33