반응형
카테고리 (Category) | 작성 날짜 (Write Date) | 최근 수정 날자 (Recent Write Date) | 작성자 (Writer) |
Algorithm | 2019-04-05 00:25 | 2021.04.19. 10:58:54 | Dev.Yang |
[문제설명]
네트워크란 컴퓨터 상호 간에 정보를 교환할 수 있도록 연결된 형태를 의미합니다. 예를 들어, 컴퓨터 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입니다.
📄 [탐색] 네트워크 Swift Source Code
import Foundation
typealias Graph = Array<[Int]>
func dfs(graph: Graph, visit: inout [Bool], n: Int, index: Int) {
// 현재 노드를 방문 처리를 수행합니다.
visit[index] = true
// 현재 노드와 연결 된 다른 노드를 재귀적으로 방문합니다.
for node in Int.zero..<n where graph[index][node] != Int.zero && !visit[node] {
dfs(graph: graph, visit: &visit, n: n, index: node)
}
}
// MARK: - 컴퓨터의 개수 n, 연결에 대한 정보가 담긴 2차원 배열 computers
func solution(_ n:Int, _ computers:[[Int]]) -> Int {
// MARK: - computer[i][i]는 항상 1입니다.
var result: Int = Int.zero
// MARK: - i번 컴퓨터와 j번 컴퓨터가 연결되어 있으면 computers[i][j]를 1로 표현합니다.
var visit: [Bool] = Array.init(repeating: false, count: n)
// 현재 방문하지 않은 노드인 경우에 대해서만 DFS 작업을 수행하여 연결 상태를 확인합니다.
for index in Int.zero..<n where !visit[index] {
result = result + 1
dfs(graph: computers, visit: &visit, n: n, index: index)
}
return result
}
📄 [탐색] 네트워크 C++ Source Code
#include <string>
#include <vector>
using namespace std;
#define INT_VECTOR vector<int>
void reculsiveDFS(int index, vector<INT_VECTOR> map, vector<bool> & visit) {
visit[index] = false;
for (int ii = 0; ii < map.size(); ii++) {
if (map[index][ii] == 1 && visit[ii]) { reculsiveDFS(ii, map, visit); }
}
}
int solution(int n, vector<vector<int>> computers) {
int answer = 0;
vector<bool> visit = vector<bool>(computers.size(), true);
int length = computers.size();
for (int ii = 0; ii < length; ii++) {
if (visit[ii]) { reculsiveDFS(ii, computers, visit); answer++; }
}
return answer;
}
🚀 REFERENCE
반응형
'# 사용하지 않는 게시글 > 알고리즘 문제' 카테고리의 다른 글
[프로그래머스 - 그래프] 가장 먼 노드 (0) | 2019.04.05 |
---|---|
[프로그래머스 - 완전탐색] 숫자 야구 (0) | 2019.04.05 |
[프로그래머스 - 정렬] K번째수 (0) | 2019.04.05 |
[프로그래머스 - 정렬] H-Index (0) | 2019.04.05 |
[프로그래머스 - 탐색] 여행경로 (0) | 2019.04.05 |
댓글