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
- DFS
- ue5
- 스택
- 다익스트라
- 트리
- 재귀
- 알고리즘
- 자료구조
- 누적 합
- 그리디 알고리즘
- 정렬
- 백트래킹
- Unreal Engine 5
- 우선순위 큐
- BFS
- 시뮬레이션
- 브루트포스
- c++
- VR
- 백준
- 유니온 파인드
- 문자열
- 그래프
- XR Interaction Toolkit
- 유니티
- 구현
Archives
- Today
- Total
1일1알
백준 1240번 노드사이의 거리 C++ 본문
https://www.acmicpc.net/problem/1240
dfs
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, m;
int ans;
vector<vector<pair<int, int>>> graph;
vector<bool> visited;
void dfs(int curr, int target, int dist) {
if (curr == target) {
ans = dist;
return;
}
visited[curr] = true;
for (auto next : graph[curr]) {
if (visited[next.first]) continue;
dfs(next.first, target, dist + next.second);
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
graph = vector<vector<pair<int, int>>>(n + 1, vector<pair<int, int>>());
visited = vector<bool>(n + 1, false);
for (int i = 0; i < n - 1; i++) {
int s, e, d;
cin >> s >> e >> d;
graph[s].push_back({ e,d });
graph[e].push_back({ s,d });
}
for (int i = 0; i < m; i++) {
for (auto a : visited) a = false;
int s, e;
cin >> s >> e;
dfs(s, e, 0);
cout << ans << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 24445번 알고리즘 수업 - 너비 우선 탐색 2 C++ (0) | 2023.01.31 |
---|---|
백준 17952번 과제는 끝나지 않아! C++ (0) | 2023.01.30 |
백준 13414번 수강신청 C++ (0) | 2023.01.28 |
백준 14921번 용액 합성하기 C++ (0) | 2023.01.27 |
백준 6068번 시간 관리하기 C++ (1) | 2023.01.26 |