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
- XR Interaction Toolkit
- 그래프
- 구현
- 유니티
- 정렬
- 트리
- 우선순위 큐
- 재귀
- 투 포인터
- 스택
- ue5
- DFS
- 브루트포스
- 알고리즘
- 다이나믹 프로그래밍
- c++
- 백준
- Unreal Engine 5
- 수학
- 유니온 파인드
- 문자열
Archives
- Today
- Total
목록노드사이의 거리 C++ (1)
1일1알
백준 1240번 노드사이의 거리 C++
https://www.acmicpc.net/problem/1240 1240번: 노드사이의 거리 N(2≤N≤1,000)개의 노드로 이루어진 트리가 주어지고 M(M≤1,000)개의 두 노드 쌍을 입력받을 때 두 노드 사이의 거리를 출력하라. www.acmicpc.net dfs #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; int n, m; int ans; vector graph; vector visited; void d..
알고리즘
2023. 1. 29. 12:05