신종 바이러스인 웜 바이러스는 네트워크를 통해 전파된다. 한 컴퓨터가 웜 바이러스에 걸리면 그 컴퓨터와 네트워크 상에서 연결되어 있는 모든 컴퓨터는 웜 바이러스에 걸리게 된다.
예를 들어 7대의 컴퓨터가 <그림 1>과 같이 네트워크 상에서 연결되어 있다고 하자. 1번 컴퓨터가 웜 바이러스에 걸리면 웜 바이러스는 2번과 5번 컴퓨터를 거쳐 3번과 6번 컴퓨터까지 전파되어 2, 3, 5, 6 네 대의 컴퓨터는 웜 바이러스에 걸리게 된다. 하지만 4번과 7번 컴퓨터는 1번 컴퓨터와 네트워크상에서 연결되어 있지 않기 때문에 영향을 받지 않는다.
어느 날 1번 컴퓨터가 웜 바이러스에 걸렸다. 컴퓨터의 수와 네트워크 상에서 서로 연결되어 있는 정보가 주어질 때, 1번 컴퓨터를 통해 웜 바이러스에 걸리게 되는 컴퓨터의 수를 출력하는 프로그램을 작성하시오.
첫째 줄에는 컴퓨터의 수가 주어진다. 컴퓨터의 수는 100 이하이고 각 컴퓨터에는 1번 부터 차례대로 번호가 매겨진다. 둘째 줄에는 네트워크 상에서 직접 연결되어 있는 컴퓨터 쌍의 수가 주어진다. 이어서 그 수만큼 한 줄에 한 쌍씩 네트워크 상에서 직접 연결되어 있는 컴퓨터의 번호 쌍이 주어진다.
1번 컴퓨터가 웜 바이러스에 걸렸을 때, 1번 컴퓨터를 통해 웜 바이러스에 걸리게 되는 컴퓨터의 수를 첫째 줄에 출력한다.
7
6
1 2
2 3
1 5
5 2
5 6
4 7
4
이 문제는 분류가 플로이드 와샬 알고리즘이라고 되어있었지만 본인은 BFS 알고리즘을 응용해서 문제를 풀었다.
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
public class Main {
static ArrayList<Pair>[] list;
static boolean[] visited;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
list = new ArrayList[N+1];;
for(int i=1; i<N+1; i++) {
list[i] = new ArrayList<Pair>();
}
visited = new boolean[N+1];
int T = sc.nextInt();
sc.nextLine();
for(int i=0; i<T; i++) {
String[] input = sc.nextLine().split(" ");
int start = Integer.parseInt(input[0]);
int end = Integer.parseInt(input[1]);
list[start].add(new Pair(start, end));
list[end].add(new Pair(end, start));
}
System.out.println(solution());
}
public static int solution() {
Queue<Pair> pq = new LinkedList<>();
ArrayList<Pair> tempList;
Pair tempNode;
Queue<Integer> queue = new LinkedList<>();
int answer = 0;
queue.add(1);
while(!queue.isEmpty()) {
int currentNode = queue.poll();
visited[currentNode] = true;
tempList = list[currentNode];
for(int i=0; i<tempList.size(); i++) {
if(!visited[tempList.get(i).end]) {
pq.add(tempList.get(i));
}
}
while(!pq.isEmpty()) {
tempNode = pq.poll();
if(!visited[tempNode.end]) {
visited[tempNode.end]=true;
answer ++;
queue.add(tempNode.end);
break;
}
}
}
return answer;
}
static class Pair {
int start;
int end;
public Pair(int start, int end) {
this.start = start;
this.end = end;
}
}
}