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 | 31 |
Tags
- Algorithm
- 백준
- BFS
- 코테
- 카카오인턴
- 삼성 #코테 #2020상반기 #c++
- 유니온파인드
- 투포인터
- Union-find
- BaekJoon
- 코딩테스트
- 카카오
- 알고리즘
- 소감
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- LIS #Algorithm #요소추적
- c++
- 1편
- 식단
- Smilegate
- 중반부
- 서버개발캠프
- 보석쇼핑
- 스마일게이트
Archives
- Today
- Total
짱아의 개발 기록장
백준 2533번. 사회망 서비스(SNS) (c++) / Tree+DFS+DP 🌟문제 굿!🌟 본문
반응형
트리를 DFS와 DP를 활용해서 푸는 문제이다.
트리를 DFS로 구현하되, 시간 절약을 위해서 DP를 사용한 형태이다.
가장 핵심 아이디어는,
내가 얼리어답터이면 -> 자식이 얼리어답터이던 아니던 상관없다.
내가 얼리어답터가 아니면 -> 자식은 반드시! 얼리어답터이어야 한다.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | // SNS #include <vector> #include <cstring> #include <iostream> using namespace std; const int MAX = 1000001; int n, u, v; vector<int> connect[MAX]; // 친구 관계 vector<int> oneWay[MAX]; // 단방향 트리로 바꿈 int dp[MAX][2] = {0, }; int visited[MAX] = {0, }; void oneWayTree(int node) { visited[node] = true; for(int i=0; i<connect[node].size(); i++){ int next = connect[node][i]; if(!visited[next]){ oneWay[node].push_back(next); oneWayTree(next); } } } int earlyAdaptor(int node, bool isEarly) { int &result = dp[node][isEarly]; if(result!=-1){ return result; } if(isEarly){ result = 1; // 자신이 얼리어답터 -> 자식이 얼리어답터든 아니든 상과없음. for(int i=0; i<oneWay[node].size(); i++){ int next = oneWay[node][i]; result += min(earlyAdaptor(next, false), earlyAdaptor(next, true)); } }else{ // 얼리어답터가 아니었으면 -> 반드시, 자식은 얼리어답터! result = 0; for(int i=0; i<oneWay[node].size(); i++){ int next = oneWay[node][i]; result += earlyAdaptor(next, true); } } return result; } int main() { memset(dp, -1, sizeof(dp)); cin>>n; for(int i=0; i<n-1; i++){ cin>>u>>v; connect[u].push_back(v); connect[v].push_back(u); } oneWayTree(1); cout<<min(earlyAdaptor(1, false), earlyAdaptor(1, true))<<"\n"; return 0; } | cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 17413번. 단어 뒤집기 2(c++) / String (0) | 2021.05.02 |
---|---|
백준 20040번. 사이클 게임(c++) / 유니온파인드 (0) | 2021.04.30 |
백준 14916번. 거스름돈(c++) / Greedy (0) | 2021.04.17 |
백준 17130번. 토끼가 정보섬에 올라온 이유(c++) / DP (0) | 2021.04.16 |
백준 2660번. 회장뽑기(c++) / BFS (0) | 2021.04.13 |
Comments