Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스마트포인터
- UE4 커스텀로그
- UML관련
- 약참조
- C++최적화
- stl
- 알고리즘
- 언리얼엔진구조체
- C++
- 델리게이트
- 데이터애셋
- BFS
- 크리티컬섹션
- 강참조
- enumasByue
- 언리얼가비지컬렉터
- map
- 람다사용정렬
- UE_LOG
- dataasset
- 애셋로드
- 정렬
- 람다
- unorder_map
- 프로그래머스
- UELOG
- 선택정렬
- 정렬알고리즘
- moreeffectiveC++
- 자료구조
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv2] 네트워크 - c++ 본문
programmers.co.kr/learn/courses/30/lessons/43162
#include<iostream>
#include <string>
#include <vector>
#include <queue>
using namespace std;
bool check[201];
int solution(int n, vector<vector<int>> computers) {
int answer = 0;
queue<pair<int, int>> q;
for (int index = 0; index < n; index++)
{
if(check[index + 1])
continue;
q.push({ index,0 });
check[index + 1 ] = true;
answer++;
while (!q.empty())
{
int curValueX = q.front().first;
int curValueY = q.front().second;
q.pop();
for (int i = 0; i < computers[curValueX].size(); i++)
{
if (computers[curValueX][i] == 1 && check[i + 1] == false)
{
check[i + 1] = true;
q.push({ i, 0 });
}
}
}
}
return answer;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 3184: 양] - C++ (0) | 2021.03.04 |
---|---|
[백준 18352: 특정 거리의 도시찾기] - C++ (0) | 2021.02.25 |
[백준 5567: 결혼식] - C++ (0) | 2021.02.10 |
[백준 1389: 케빈 베이컨의 6단계 법칙] - C++ (0) | 2021.02.09 |
[백준 2583: 영역 구하기] - C++ (0) | 2021.02.04 |