본문 바로가기

ProgramSoliving

프로그래머스 : 네트워크

반응형

 

package excirsize;

import java.util.LinkedList;
import java.util.Queue;

public class 네트워크 {

	boolean visit[];

	public int solution(int n, int[][] computers) {
		int answer = 0;
		visit = new boolean[n];

		Queue<Integer> q = new LinkedList<Integer>();
		for (int i = 0; i < n; i++) {
			if (visit[i])
				continue;
			answer++;
			q.add(i);
			visit[i] = true;
			while (!q.isEmpty()) {
				int cur = q.poll();

				for (int j = 0; j < n; j++) {
					if (visit[j])
						continue;
					if (computers[cur][j] == 0)
						continue;
					visit[j] = true;
					q.add(j);
				}
			}
		}
		return answer;
	}
}
반응형

'ProgramSoliving' 카테고리의 다른 글

프로그래머스 : 여행경로  (0) 2020.09.12
프로그래머스 : 단어변환  (0) 2020.09.11
프로그래머스 : 타겟 넘버  (0) 2020.09.11
프로그래머스 : 방금그곡  (0) 2020.07.25
백준 : 3665 (위상정렬)  (0) 2020.07.22