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
- 문자열포맷
- 프렌즈4블록java
- 백준
- java
- java method
- 백준 1924번
- heap정렬
- 힙정렬자바
- 자바
- 프로그래머스
- 카카오코딩테스트
- 자료구조힙
- 백준 1924번 java
- Java heap
- 카카오기출
- 공부정리
- 카카오코테
- 백준 1000번 java
- 자료구조 트리
- 코테준비
- 카카오1차
- 객체프로그래밍이란
- 코딩테스트기출
- 프렌즈4블록
- 객체프로그래밍
- 개발상식
- 알고리즘
- 백준 1000번
- heap
- 자바문자열
Archives
- Today
- Total
일단 시작해보는 블로그
[알고리즘_풀이] 백준 11724, 연결 요소의 개수 본문
// 방향 없는 그래프, 연결된 그래프 개수
import java.util.ArrayList;
import java.util.Scanner;
import java.util.Stack;
import java.util.List;
public class Main {
static boolean[] marked = null;
static List<List<Integer>> none_direction_graph = null;
//재귀호출
static void dfs(int n){
marked[n] = true;
// 자식노드를 linkedNodeArr에 담는다.
List<Integer> linkedNodeArr = none_direction_graph.get(n);
for(int i=0; i<linkedNodeArr.size(); i++){
if(!marked[linkedNodeArr.get(i)]) dfs(linkedNodeArr.get(i));
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int M = sc.nextInt();
none_direction_graph = new ArrayList<>();
for(int i=0; i<=N; i++){
none_direction_graph.add(new ArrayList<Integer>());
}
//input
for(int i=0; i<M; i++){
int a = sc.nextInt();
int b = sc.nextInt();
none_direction_graph.get(a).add(b);
none_direction_graph.get(b).add(a);
}
Stack<Integer> stack = new Stack<>();
marked = new boolean[N+1]; //1~N 인덱스 사용
int count = 0;
for(int i=1; i<=N; i++){
if(!marked[i]){
count++;
dfs(i);
}
}
System.out.println(count);
}
}
https://www.acmicpc.net/problem/11724
'CS > 알고리즘 풀이' 카테고리의 다른 글
[알고리즘_풀이] 카카오코딩테스트, 프렌즈 4블록(java) (0) | 2019.08.28 |
---|---|
[알고리즘_풀이] 카카오 예선, 카카오프렌즈 컬러링북 (0) | 2019.08.27 |
[알고리즘 풀이] 카카오 코테 기출, 다트 게임 (0) | 2019.08.24 |
[알고리즘_문자열] 문자열 뒤집기 (0) | 2019.08.24 |
[알고리즘] 이친수, 백준 2193 (0) | 2019.08.23 |
Comments