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
- 투 포인터
- 유니티
- BFS
- 유니온 파인드
- XR Interaction Toolkit
- 그래프
- DFS
- VR
- 스택
- 문자열
- 재귀
- 브루트포스
- 수학
- 트리
- 백준
- 다익스트라
- 구현
- 정렬
- 알고리즘
- 누적 합
- 다이나믹 프로그래밍
- 우선순위 큐
- ue5
- 백트래킹
- 자료구조
- Unreal Engine 5
- 그리디 알고리즘
- 시뮬레이션
- Team Fortress 2
- c++
Archives
- Today
- Total
1일1알
백준 2617번 구슬 찾기 C++ 본문
자기보다 가벼운 것과 무거운 것 두 경우의 그래프를 만들고, 둘 중 하나라도 자기의 자식의 수가 n/2보다 크다면 중간이 될 수 없다.
#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 <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int hs = 0;
int ls = 0;
vector<vector<int>> light(100, vector<int>());
vector<vector<int>> heavy(100, vector<int>());
vector<bool> visited1(100, false);
vector<bool> visited2(100, false);
void dfs1(int n) {
for (auto a : heavy[n]) {
if (!visited1[a]) {
visited1[a] = true;
dfs1(a);
hs++;
}
}
}
void dfs2(int n) {
for (auto a : light[n]) {
if (!visited2[a]) {
visited2[a] = true;
dfs2(a);
ls++;
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, m;
cin >> n >> m;
for (int i = 0; i < m; i++) {
int h, l;
cin >> h >> l;
light[h].push_back(l);
heavy[l].push_back(h);
}
int ans = 0;
for (int i = 1; i <= n; i++) {
dfs1(i);
dfs2(i);
if (hs > n / 2 || ls > n / 2) ans++;
for (int j = 1; j <= n; j++) {
visited1[j] = false;
visited2[j] = false;
}
hs = 0;
ls = 0;
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 2479번 경로 찾기 C++ (0) | 2022.03.03 |
---|---|
백준 12886번 돌 그룹 C++ (0) | 2022.03.02 |
백준 2206번 벽 부수고 이동하기 C++ (0) | 2022.02.28 |
백준 1987번 알파벳 C++ (0) | 2022.02.27 |
백준 2748번 피보나치 수 2 C++ (0) | 2022.02.26 |