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

bfs를 이용하여 문제를 해결하였다. #include #include #include #include #include #include #include #include using namespace std; int n, l, r; vector v(50, vector(50)); int dRow[4] = { -1,0,1,0 }; int dCol[4] = { 0,1,0,-1 }; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n >> l >> r; for (int i = 0; i > v[i][j]; } } int cnt = 0..
알고리즘
2022. 1. 3. 22:07