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
- 델리게이트
- unorder_map
- 언리얼가비지컬렉터
- 강참조
- C++
- 데이터애셋
- dataasset
- 프로그래머스
- 알고리즘
- map
- 람다사용정렬
- 애셋로드
- stl
- 정렬알고리즘
- moreeffectiveC++
- 크리티컬섹션
- BFS
- 람다
- UML관련
- 선택정렬
- UE4 커스텀로그
- UELOG
- 언리얼엔진구조체
- 약참조
- UE_LOG
- 스마트포인터
- 정렬
- 자료구조
- C++최적화
- enumasByue
Archives
- Today
- Total
기억을 위한 기록들
[백준 5567: 결혼식] - C++ 본문
#include<iostream>
#include<queue>
#include<string.h>
#include<vector>
using namespace std;
vector<int> map[501];
bool chk[501];
int main() {
int n, m;
cin >> n >> m;
int x, y;
for (int i = 1; i <= m; i++)
{
cin >> x >> y;
map[x].push_back(y);
map[y].push_back(x);
}
queue<pair<int,int>> q;
int result = 0;
q.push({ 1,0 });
chk[1] = true;
int level = 1;
while (!q.empty())
{
int curNum = q.front().first;
int nextLevel = q.front().second+1;
if (nextLevel == 3) //친구의 친구의 친구라서 탈출
{
break;
}
q.pop();
for (int j = 0; j < map[curNum].size(); j++)
{
int cur = map[curNum][j];
if (!chk[cur])
{
chk[cur] = true;
q.push({ cur,nextLevel });
result++;
}
}
}
cout << result << endl;
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 18352: 특정 거리의 도시찾기] - C++ (0) | 2021.02.25 |
---|---|
[프로그래머스 lv2] 네트워크 - c++ (0) | 2021.02.16 |
[백준 1389: 케빈 베이컨의 6단계 법칙] - C++ (0) | 2021.02.09 |
[백준 2583: 영역 구하기] - C++ (0) | 2021.02.04 |
[백준 2468: 안전 영역] - C++ (0) | 2021.01.18 |