https://school.programmers.co.kr/learn/courses/30/lessons/43162?language=java
문제 풀이
- 방문한 컴퓨터를 boolean 배열에 저장해야 함
- computers의 각 요소를 순회하면서 자기 자신의 인덱스가 아닌 요소가 1인지 검사
- 1이면 그 컴퓨터로 이동 (dfs로 인덱스 전달), boolean 배열에 true로 변경
- 순회를 다 했을때 isVisited가 true인 경우 answer++
코드
class Solution {
public int solution(int n, int[][] computers) {
int answer = 0;
boolean[] isVisited = new boolean[n];
for (int i = 0; i < n; i++) {
if (!isVisited[i]) {
dfs(computers, i, isVisited);
answer++;
}
}
return answer;
}
public boolean[] dfs(int[][] computers, int i, boolean[] isVisited) {
isVisited[i] = true;
for (int j = 0; j < computers.length; j++) {
if (i != j && computers[i][j] != 0 && !isVisited[j]) {
isVisited = dfs(computers, j, isVisited);
}
}
return isVisited;
}
}
'Development > PS' 카테고리의 다른 글
[Stack] 프로그래머스 level 2 올바른 괄호 java 풀이 (0) | 2024.01.10 |
---|---|
[Queue] 프로그래머스 level 2 기능개발 java 풀이 (0) | 2024.01.07 |
[Hash] 프로그래머스 level 3 베스트앨범 java 풀이 (1) | 2023.12.23 |
[Hash]프로그래머스 level 2 의상 java 풀이 (2) | 2023.12.22 |
[DP] 프로그래머스 level 3 N 으로 표현 Python 풀이 (1) | 2023.12.05 |