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 |
Tags
- 언리얼엔진구조체
- 약참조
- moreeffectiveC++
- 람다사용정렬
- 정렬알고리즘
- 자료구조
- UE4 커스텀로그
- 프로그래머스
- 람다
- UML관련
- BFS
- UE_LOG
- 애셋로드
- dataasset
- 데이터애셋
- unorder_map
- 스마트포인터
- 정렬
- map
- 알고리즘
- 크리티컬섹션
- C++
- 델리게이트
- UELOG
- enumasByue
- 강참조
- stl
- 언리얼가비지컬렉터
- C++최적화
- 선택정렬
Archives
- Today
- Total
기억을 위한 기록들
[백준 2644: 촌수계산] - C++ 본문
#include<iostream>
#include<vector>
using namespace std;
int target1;
int target2;
int cnt;
vector<int> info[100];
bool checkArr[100];
bool bIsSuc = false;
int resultCnt = 9999;
void D(int _n)
{
if (_n == target2)
{
bIsSuc = true;
if (cnt < resultCnt)
resultCnt = cnt;
}
else
{
for (int i = 0; i < info[_n].size(); i++)
{
int nextTarget = info[_n][i];
if (checkArr[nextTarget] == false)
{
checkArr[nextTarget] = true;
cnt++;
D(nextTarget);
cnt--;
checkArr[nextTarget] = false;
}
}
}
}
int main()
{
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int totalPeople;
cin >> totalPeople;
cin >> target1 >> target2;
int n2;
cin >> n2;
int input1;
int input2;
for (int i = 0; i < n2; i++)
{
cin >> input1 >> input2;
info[input1].push_back(input2);
info[input2].push_back(input1);
}
checkArr[target1] = true;
D(target1);
if(bIsSuc)
cout << resultCnt << endl;
else
{
cout << -1 << endl;
}
return 0;
}
'Coding Test - cpp > DFS' 카테고리의 다른 글
[백준 1743: 음식물 피하기] - C++ (0) | 2021.02.04 |
---|---|
[백준 13565: 침투] - C++ (0) | 2021.02.01 |
[백준 11725 : 트리의 부모 찾기] - C++ (0) | 2021.01.21 |
[백준 2606 : 바이러스] - C++ (0) | 2021.01.11 |
미로탐색(DFS) (0) | 2021.01.08 |