728x90
프로그래머스 | LV.3 네트워크 문제
https://school.programmers.co.kr/learn/courses/30/lessons/43162
문제 설명
네트워크란 컴퓨터 상호 간에 정보를 교환할 수 있도록 연결된 형태를 의미합니다. 예를 들어, 컴퓨터 A와 컴퓨터 B가 직접적으로 연결되어있고, 컴퓨터 B와 컴퓨터 C가 직접적으로 연결되어 있을 때 컴퓨터 A와 컴퓨터 C도 간접적으로 연결되어 정보를 교환할 수 있습니다. 따라서 컴퓨터 A, B, C는 모두 같은 네트워크 상에 있다고 할 수 있습니다.
컴퓨터의 개수 n, 연결에 대한 정보가 담긴 2차원 배열 computers가 매개변수로 주어질 때, 네트워크의 개수를 return 하도록 solution 함수를 작성하시오.
제한사항
- 컴퓨터의 개수 n은 1 이상 200 이하인 자연수입니다.
- 각 컴퓨터는 0부터 n-1인 정수로 표현합니다.
- i번 컴퓨터와 j번 컴퓨터가 연결되어 있으면 computers[i][j]를 1로 표현합니다.
- computer[i][i]는 항상 1입니다.
💚나의 풀이
- 1) DFS - ArrayList까지 생성할 필요는 X
- 최초 시도 때는 사방향으로 탐색하는 문제인 줄 알았는데, 문제에서 computer[i][i] 는 항상 1이라는 조건이 존재했다.
- 즉, i→i 정점은 자기 자신을 의미하고, 각 computer[start][i] 이런 식으로 각 start 정점에서 i로 다른 정점을 탐색하며 진행해야 하는 문제였다.
- visited[] 도 1차원 배열만 쓰면 되는 문제였다. 다시 풀자.
import java.util.*;
class Solution {
static int answer =0;
static ArrayList<ArrayList<Integer>> graph;
static boolean[] visited;
//dfs
static void dfs(int v){
visited[v] = true;
for(int nx : graph.get(v)){
if(!visited[nx]){
dfs(nx);
}
}
}
//solution
public int solution(int n, int[][] computers) {
graph = new ArrayList<>();
for(int i=0; i<n; i++){
graph.add(new ArrayList<Integer>());
}
visited = new boolean[n];
for(int i=0; i<n; i++){
for(int j=0; j<n; j++){
if(computers[i][j] == 1){
graph.get(i).add(j);
graph.get(j).add(i);
}
}
}
for(int i=0; i<n; i++){
if(!visited[i]){
answer++;
dfs(i);
}
}
return answer;
}
}
문풀 - 2) DFS - computers[start][i]로 진행
- computers[start][i] : 각 start 정점에서 갈 수 있는 i 정점에 대하여 탐색하면서 뻗어가고, 복귀할 때마다 answer++;
class Solution {
static int answer= 0;
static boolean[] visited;
//dfs
static void dfs(int v, int n, int[][] computers){
visited[v] = true;
for(int i=0; i<computers.length; i++){
if(computers[v][i] == 1 && !visited[i]){
dfs(i, n, computers);
}
}
}
//솔루션 함수
public int solution(int n, int[][] computers) {
visited = new boolean[n];
for(int i=0; i<n; i++){
if(!visited[i]) {
answer++;
dfs(i, n, computers);
}
}
return answer;
}
}
문풀 - 3) BFS 로 풀이
import java.util.*;
class Solution {
static int answer= 0;
static boolean[] visited;
//bfs
static void bfs(int v, int[][] computers){
Queue<Integer> Q = new LinkedList<>();
visited[v] =true;
Q.add(v);
while(!Q.isEmpty()){
//현재 정점 뽑고
int cur = Q.poll();
for(int i=0; i<computers.length; i++){
if(!visited[i] && computers[cur][i] == 1){
Q.add(i);
visited[i] = true;
}
}
}
}
//솔루션 함수
public int solution(int n, int[][] computers) {
visited = new boolean[n];
for(int i=0; i<n; i++){
if(!visited[i]){
answer++;
bfs(i, computers);
}
}
return answer;
}
}
728x90
'코딩 테스트 [준비] > [문풀] 프로그래머스_문풀_조지기' 카테고리의 다른 글
프로그래머스 | LV.2 구명보트 - 그리디 문풀 (Java) (0) | 2023.06.30 |
---|---|
프로그래머스 | LV.2 게임 맵 최단 거리 - BFS 풀이 (Java) (0) | 2023.06.29 |
프로그래머스 | LV.2 타겟 넘버 문제 - DFS 문풀 (Java) (0) | 2023.06.29 |
프로그래머스 | LV.2 크기가 작은 부분 문자열 (Java) (0) | 2023.05.22 |
프로그래머스 | Lv.2 다음 큰 숫자 (Java) (0) | 2023.05.22 |