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 | 31 |
Tags
- java
- 백트래킹
- 그리디
- 백준
- BFS
- mst
- 이분탐색
- 후니의 쉽게 쓴 시스코 네트워킹
- 알고리즘
- swea
- 완전탐색
- Kotlin
- 구현
- 투 포인터
- 유니온 파인드
- dfs
- CS
- 프로그래머스
- 세그먼트 트리
- 에라토스테네스의 체
- 수학
- 문자열
- 위상정렬
- JUnit 5
- 플로이드-와샬
- 시뮬레이션
- Effective Java
- 스택
- Network
- 동적계획법
Archives
반갑습니다!
[SWEA] 최장 경로 본문
풀이
백트래킹을 통해서 해결하였다. 모든 점을 다 탐색하어 최장 길이를 구할 수 있다.
코드
#include <iostream>
#include <cstring>
using namespace std;
int n, m, ans;
bool adj[11][11];
bool visited[11];
void dfs(int idx, int cnt) {
ans = ans > cnt ? ans : cnt;
visited[idx] = true;
for (int i = 1; i <= n; i++) {
if (!visited[i] && adj[idx][i])
dfs(i, cnt + 1);
}
visited[idx] = false;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
for (int c = 1; c <= t; c++) {
ans = 1;
cin >> n >> m;
memset(adj, false, sizeof(adj));
memset(visited, false, sizeof(visited));
for (int i = 0; i < m; i++) {
int tmp1, tmp2;
cin >> tmp1 >> tmp2;
adj[tmp1][tmp2] = true;
adj[tmp2][tmp1] = true;
}
for (int i = 1; i <= n; i++) {
dfs(i, 1);
}
cout << "#" << c << ' ' << ans << '\n';
}
}
'알고리즘 문제 풀이' 카테고리의 다른 글
[백준] 3568 iSharp (0) | 2020.04.19 |
---|---|
[백준] 15654 N과 M (5) (0) | 2020.04.19 |
[SWEA] 2817 부분 수열의 합 (0) | 2020.04.18 |
[SWEA] 1213 String (0) | 2020.04.18 |
[SWEA] 1225 암호생성기 (0) | 2020.04.18 |