제출 #164591

#제출 시각아이디문제언어결과실행 시간메모리
164591dolphingarlicCat in a tree (BOI17_catinatree)C++14
100 / 100
184 ms18040 KiB
#include <bits/stdc++.h>
#define FOR(i, x, y) for (int i = x; i < y; i++)
typedef long long ll;
using namespace std;

int n, d;
vector<int> graph[200001];
// dp: Maximum number of marked nodes in subtree of i
// to_root: Minimum length of path from a marked node to the root
// mn_dist: Maximum length of path from a marked node to the root after
// the erasing of another marked node
int dp[200001], to_root[200001], mn_dist[200001];

void dfs(int node = 0) {
    if (graph[node].size()) {
        int v = graph[node][0];
        dfs(v);

        if (to_root[v] + 1 >= d) {
            // We mark the root
            dp[node] = dp[v] + 1;
            to_root[node] = 0;
            mn_dist[node] = to_root[v] + 1;
        } else {
            // We don't
            dp[node] = dp[v];
            to_root[node] = to_root[v] + 1;
            mn_dist[node] = mn_dist[v] + 1;
        }

        FOR(i, 1, graph[node].size()) {
            int v = graph[node][i];
            dfs(v);

            int doo = to_root[node] + to_root[v] + 1;
            int mdoo = min(to_root[node], to_root[v] + 1);
            
            int dos = to_root[node] + mn_dist[v] + 1;
            int mdos = min(to_root[node], mn_dist[v] + 1);
    
            int dso = mn_dist[node] + to_root[v] + 1;
            int mdso = min(mn_dist[node], to_root[v] + 1);
    
            int dss = mn_dist[node] + mn_dist[v] + 1;
            int mdss = min(mn_dist[node], mn_dist[v] + 1);

            if (doo >= d) {
                dp[node] += dp[v];
                to_root[node] = mdoo;
                mn_dist[node] = max(mdos, mdso);
            } else {
                dp[node] += dp[v] - 1;

                if (dos >= d) to_root[node] = mdos;
                else to_root[node] = 0;

                if (dso >= d) to_root[node] = max(to_root[node], mdso);

                mn_dist[node] = mdss;
            }
        }
    } else {
        dp[node] = 1;
        to_root[node] = 0;
        mn_dist[node] = d;
    }
}

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cin >> n >> d;
    FOR(i, 1, n) {
        int p;
        cin >> p;
        graph[p].push_back(i);
    }

    dfs();
    cout << dp[0];
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

catinatree.cpp: In function 'void dfs(int)':
catinatree.cpp:2:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define FOR(i, x, y) for (int i = x; i < y; i++)
catinatree.cpp:31:13:
         FOR(i, 1, graph[node].size()) {
             ~~~~~~~~~~~~~~~~~~~~~~~~    
catinatree.cpp:31:9: note: in expansion of macro 'FOR'
         FOR(i, 1, graph[node].size()) {
         ^~~
catinatree.cpp:44:17: warning: unused variable 'dss' [-Wunused-variable]
             int dss = mn_dist[node] + mn_dist[v] + 1;
                 ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...