Notice
Recent Posts
Recent Comments
Link
«   2026/06   »
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
Archives
Today
Total
관리 메뉴

dh-winternagi 님의 블로그

(15681) 트리와 쿼리 본문

백준 (C++)/Solve

(15681) 트리와 쿼리

dh-winternagi 2026. 4. 20. 19:54

https://www.acmicpc.net/problem/15681

단계별로 풀어보기

36단계(트리에서의 동적 계획법) 1번째

 

 

 

트리에서의 동적 계획법은 일반적으로 서브트리의 최적해를 구한 뒤 전체 최적해를 구하는 분할 정복의 방식으로 이루어진다.

 

 

 

#include <iostream>
#include <vector>
using namespace std;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  cout.tie(NULL);
  
  int n, r, q;
  
  cin >> n >> r >> q;
  
  vector adj(n+1, vector<int>());
  vector<int> cnt(n+1);
  
  for(int i=1;i<n;i++){
    int u, v;
    
    cin >> u >> v;
    
    adj[u].push_back(v);
    adj[v].push_back(u);
  }
  
  auto dfs= [&](auto self, int now) -> int {
    cnt[now]= 1;
    
    for(int next:adj[now]){
      if(cnt[next])  continue;
      
      cnt[now]+= self(self, next);
    }
    
    return cnt[now];
  };
  
  dfs(dfs, r);
  
  while(q--){
    int u;
    
    cin >> u;
    
    cout << cnt[u] << "\n";
  }
  
  return 0;
}

'백준 (C++) > Solve' 카테고리의 다른 글

(2533) 사회망 서비스(SNS)  (0) 2026.04.20
(1949) 우수 마을  (0) 2026.04.20
(17472) 다리 만들기 2  (0) 2026.04.20
(6497) 전력난  (0) 2026.04.20
(1774) 우주신과의 교감  (0) 2026.04.20