bzoj 1907 树的路径覆盖 贪心

题面

题目传送门

解法

给个链接,贪心和树形dp讲得挺到位的

题解

反正我觉得贪心比较好写,也挺好理解的

时间复杂度:\(O(Tn)\)

代码

#include <bits/stdc++.h>
#define N 10010
using namespace std;
template <typename node> void chkmax(node &x, node y) {x = max(x, y);}
template <typename node> void chkmin(node &x, node y) {x = min(x, y);}
template <typename node> void read(node &x) {
    x = 0; int f = 1; char c = getchar();
    while (!isdigit(c)) {if (c == '-') f = -1; c = getchar();}
    while (isdigit(c)) x = x * 10 + c - '0', c = getchar(); x *= f;
}
struct Edge {
    int next, num;
} e[N * 3];
int cnt, vis[N], ans[N];
void add(int x, int y) {
    e[++cnt] = (Edge) {e[x].next, y};
    e[x].next = cnt;
}
void dfs(int x, int fa) {
    ans[x] = 1; int tot = 0;
    for (int p = e[x].next; p; p = e[p].next) {
        int k = e[p].num;
        if (k == fa) continue; dfs(k, x);
        ans[x] += ans[k];
        if (!vis[k]) tot++;
    }
    if (tot >= 2) ans[x] -= 2, vis[x] = 1;
    if (tot == 1) ans[x]--;
}
int main() {
    int T; read(T);
    while (T--) {
        int n; read(n); cnt = n;
        for (int i = 1; i <= n; i++)
            e[i].next = 0, vis[i] = 0, ans[i] = 0;
        for (int i = 1; i < n; i++) {
            int x, y; read(x), read(y);
            add(x, y), add(y, x);
        }
        dfs(1, 0); cout << ans[1] << "\n";
    }
    return 0;
}

转载于:https://www.cnblogs.com/copperoxide/p/9477047.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值