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 |
Tags
- 그래프
- 재귀
- Team Fortress 2
- 문자열
- 자료구조
- VR
- 다익스트라
- 투 포인터
- 브루트포스
- 수학
- BFS
- 누적 합
- 스택
- 유니온 파인드
- XR Interaction Toolkit
- 백준
- Unreal Engine 5
- 우선순위 큐
- 시뮬레이션
- DFS
- 그리디 알고리즘
- 백트래킹
- 트리
- c++
- ue5
- 다이나믹 프로그래밍
- 구현
- 정렬
- 유니티
- 알고리즘
Archives
- Today
- Total
1일1알
백준 25195번 Yes or yes C++ 본문
https://www.acmicpc.net/problem/25195
dfs
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, m;
vector<vector<int>> graph;
vector<bool> gomGom;
bool meet = true;
void Dfs(int node, bool isGomGom) {
if (gomGom[node]) isGomGom = true;
if (graph[node].size() == 0) {
if (isGomGom == false) meet = false;
}
else {
for (auto next : graph[node]) Dfs(next, isGomGom);
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
graph = vector<vector<int>>(n + 1, vector<int>());
gomGom = vector<bool>(n + 1, false);
for (int i = 0; i < m; i++) {
int start, end;
cin >> start >> end;
graph[start].push_back(end);
}
int S;
cin >> S;
for (int i = 0; i < S; i++) {
int s;
cin >> s;
gomGom[s] = true;
}
Dfs(1, false);
if (meet) cout << "Yes";
else cout << "yes";
}
'알고리즘' 카테고리의 다른 글
백준 2109번 순회강연 C++ (0) | 2022.10.30 |
---|---|
백준 15789번 CTP 왕국은 한솔 왕국을 이길 수 있을까? C++ (1) | 2022.10.29 |
백준 16469번 소년 점프 C++ (0) | 2022.10.27 |
백준 3474번 교수가 된 현우 C++ (0) | 2022.10.26 |
백준 14426번 접두사 찾기 C++ (0) | 2022.10.25 |