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
- 애셋로드
- 프로그래머스
- moreeffectiveC++
- 강참조
- 약참조
- UE4 커스텀로그
- map
- unorder_map
- 언리얼엔진구조체
- UELOG
- 데이터애셋
- C++최적화
- 정렬알고리즘
- 알고리즘
- UML관련
- stl
- 언리얼가비지컬렉터
- 선택정렬
- 람다
- C++
- 정렬
- UE_LOG
- 크리티컬섹션
- 자료구조
- enumasByue
- 스마트포인터
- dataasset
- 델리게이트
- BFS
- 람다사용정렬
Archives
- Today
- Total
기억을 위한 기록들
[백준 18352: 특정 거리의 도시찾기] - C++ 본문
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
int visited[300001];
int main() {
int N; //도시 수
int M; //도로의 수
int K; //거리 정보
int X; //출발 도시
cin >> N >> M >> K >> X;
vector<vector<int>> arr(N+1);
int input1;
int input2;
for (int i = 0; i < M; i++)
{
cin >> input1 >> input2;
arr[input1].push_back(input2);
}
vector<int> result;
queue<pair<int,int>> q;
q.push({ X,0 }); //시작지점,깊이 0
visited[X] = 1;
while (!q.empty())
{
int curNum = q.front().first;
int curDepth = q.front().second;
q.pop();
if (curDepth == K) //거리와 방문 깊이가 같으면 정답
{
result.push_back(curNum);
}
for (int i = 0; i <(signed)arr[curNum].size(); i++)
{
int nextNum = arr[curNum][i];
if (!visited[nextNum])
{
visited[nextNum] = 1;
q.push({ nextNum,curDepth+1 });
}
}
}
if (result.size() == 0) //정답 없으면 -1 출력
{
cout << -1 << endl;
return 0;
}
sort(result.begin(), result.end()); //정렬
for (auto a : result)
cout << a << '\n';
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 16918: 봄버맨] - C++ (0) | 2021.03.22 |
---|---|
[백준 3184: 양] - C++ (0) | 2021.03.04 |
[프로그래머스 lv2] 네트워크 - c++ (0) | 2021.02.16 |
[백준 5567: 결혼식] - C++ (0) | 2021.02.10 |
[백준 1389: 케빈 베이컨의 6단계 법칙] - C++ (0) | 2021.02.09 |