CodeForces 682C Alyona and the Tree 搜索

题目描述:

Alyona decided to go on a diet and went to the forest to get some apples. There she unexpectedly found a magic rooted tree with root in the vertex 1, every vertex and every edge of which has a number written on.

The girl noticed that some of the tree’s vertices are sad, so she decided to play with them. Let’s call vertex v sad if there is a vertex u in subtree of vertex v such that dist(v, u) > au, where au is the number written on vertex u, dist(v, u) is the sum of the numbers written on the edges on the path from v to u.

Leaves of a tree are vertices connected to a single vertex by a single edge, but the root of a tree is a leaf if and only if the tree consists of a single vertex — root.

Thus Alyona decided to remove some of tree leaves until there will be no any sad vertex left in the tree. What is the minimum number of leaves Alyona needs to remove?

Input
In the first line of the input integer n (1 ≤ n ≤ 105) is given — the number of vertices in the tree.

In the second line the sequence of n integers a1, a2, …, an (1 ≤ ai ≤ 109) is given, where ai is the number written on vertex i.

The next n - 1 lines describe tree edges: ith of them consists of two integers pi and ci (1 ≤ pi ≤ n,  - 109 ≤ ci ≤ 109), meaning that there is an edge connecting vertices i + 1 and pi with number ci written on it.

Output
Print the only integer — the minimum number of leaves Alyona needs to remove such that there will be no any sad vertex left in the tree.

Example
input

9
88 22 83 14 95 91 98 53 11
3 24
7 -8
1 67
1 64
9 65
5 12
6 -80
3 8

output

5

Note
The following image represents possible process of removing leaves from the tree:

这里写图片描述

题目分析:

有一棵树,节点有权值,边也有权值,若要使每个子节点到其祖宗节点的路径权之和小于或者等于子节点的权,需要从原图中删除多少个节点?

这里的难点是在构图之前你不知道谁是父节点,谁是子节点,事实上,不需要判断谁是父节点,谁是子节点,只需要按无向图的建法,对每个节点都进行搜索,记录节点权值大于等于其路径权值的点,(不需要删除)。
答案就是原图节点数-留下的节点数。

代码如下:

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
typedef long long ll;
const int INF = 0x3f3f3f3f;
const double eps = 1e-4;
const int MAXN=100010;

struct Edge
{
    int to,next;
    ll w;
}edge[MAXN*2];

int a[MAXN];
int n;
int id;
int head[MAXN];
int remain;

void init()
{
    id=0;
    memset(head,-1,sizeof(head));
}

void addedge(int u,int v, ll w)
{
    edge[id].to=v;
    edge[id].next=head[u];
    edge[id].w=w;
    head[u]=id++;
}

void dfs(int u,int pre, ll w)
{
    if (a[u]<w) return;
    remain++;
    for(int i=head[u]; i!=-1; i=edge[i].next)
    {
        int v=edge[i].to;
        if (v==pre) continue;
        dfs(v,u,max(0LL,w+edge[i].w));
    }
}


int main()
{
    init();
    remain=0;
    scanf("%d",&n);
    for(int i=1; i<=n; i++)
       scanf("%d",&a[i]);
    for(int i=2; i<=n; i++)
    {
        int v,w;
        scanf("%d%lld",&v,&w);
        addedge(i,v,w);
        addedge(v,i,w);
    }
    dfs(1,1,0);
    printf("%d\n",n-remain);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值