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

매번 빙판이 녹는것과 백조가 만날 수 있는지를 bfs를 돌리면 시간초과가 난다. 그렇기 때문에 각 구역마다 번호를 지정해두고 유니온 파인드를 이용해 빙판이 녹아서 합쳐지면 두 구역을 합쳐주면서 백조가 같은 구역에 있는지를 검사하면 된다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; int r, c; int head = 0; vector found; vector board; vector parent; vector h..
알고리즘
2022. 7. 25. 13:07