250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- the midnight library
- 코테 대비
- 프로그래머스
- English
- 삼성
- nightroutine
- 코딩테스트
- 완전탐색
- D4
- 코테
- englishbook
- 쉬운 알고리즘 문제
- swexpertacademy
- 직무면접
- STUDYENGLISH
- MySQL
- SQL
- readingbook
- sw expert academy
- dfs
- sw expert
- PyQt
- 백준
- 코테 준비
- 원서읽자
- 원서읽기
- 알고리즘
- BFS
- 원서
- 알고리즘 문제
Archives
- Today
- Total
시나브로
[프로그래머스] 네트워크 본문
728x90
DFS/BFS를 이용하는 문제이다.
네트워크가 몇개인지 확인하는 문제로
모든 점을 한바퀴 볼면서 깊이우선탐색을 해주었다.
만약 이전의 점에서 그 점을 방문했는 경우를 제외하고 갯수를 세주면 답이 된다.
#include <string>
#include <vector>
using namespace std;
int point_list[210];
void dfs(int k,vector<vector<int>> A){
for (int i = 0; i < A.size(); i++) {
if (A[k][i] == 1&&point_list[i]==0) {
point_list[i] = 1;
dfs(i, A);
}
}
}
int solution(int n, vector<vector<int>> computers) {
int answer = 0;
for (int i = 0; i < computers.size(); i++) {
if (point_list[i] == 0) {
answer++;
dfs(i, computers);
}
}
return answer;
}
https://programmers.co.kr/learn/courses/30/lessons/43162
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[2019 카카오 개발자 겨울 인턴십] 튜플 (0) | 2020.05.09 |
---|---|
[2019 카카오 개발자 겨울 인턴십] 크레인 인형뽑기 게임 (0) | 2020.05.08 |
[프로그래머스] 2 x n 타일링 (0) | 2020.04.26 |
[ 프로그래머스 ] 스킬트리 (0) | 2020.04.04 |
[ 프로그래머스 ] 멀쩡한 사각형 (0) | 2020.04.04 |
Comments