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 | 31 |
Tags
- Algorithm
- 백준
- 중반부
- 보석쇼핑
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 1편
- 카카오인턴
- 유니온파인드
- 서버개발캠프
- 카카오
- LIS #Algorithm #요소추적
- 삼성 #코테 #2020상반기 #c++
- BaekJoon
- Smilegate
- Union-find
- c++
- 코딩테스트
- 투포인터
- 스마일게이트
- 코테
- BFS
- 식단
- 소감
- 알고리즘
Archives
- Today
- Total
짱아의 개발 기록장
프로그래머스. 네트워크(c++) / BFS 본문
반응형
아주 기본적인 BFS문제이다.
방문하지 않은 컴퓨터에 방문해서 연결된 모든 컴퓨터들을 하나의 네트워크로 연결해주는 작업을 bfs로 해주면 된다.
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
31
32
|
#include <string>
#include <vector>
#include <queue>
using namespace std;
int solution(int n, vector<vector<int>> computers) {
int answer = 0;
int visited[201] = {0, };
for(int j=0; j<computers.size(); j++){
if(visited[j]) continue;
answer++;
queue<int> q;
q.push(j);
while(!q.empty()){
int computer = q.front();
visited[computer] = 1;
q.pop();
for(int i=0; i<computers.size(); i++){
if(!visited[i] && (computers[computer][i]==1 || computers[i][computer]==1)){
visited[i] = 1;
q.push(i);
}
}
}
}
return answer;
}
|
cs |
반응형
'Algorithm > Programmers' 카테고리의 다른 글
프로그래머스. 등굣길(c++) / DP+BFS or DP+DFS (0) | 2021.01.09 |
---|---|
프로그래머스. 입국심사(c++) / 이분탐색 (0) | 2021.01.09 |
프로그래머스. 디스크컨트롤러(c++) / 힙(Heap) (0) | 2021.01.08 |
프로그래머스. 카펫(c++) / 완탐(Brute Force) (0) | 2021.01.08 |
프로그래머스. 단속카메라(c++) / 그리디(Greedy) (0) | 2021.01.08 |
Comments