CodeForces 682C Alyona and the Tree(广搜 + 技巧)

  方法:从根节点开始广搜,如果遇到了应该删除的点,就再广搜删掉它的子树并标记,然后统计一下被标记的个数就是答案,所谓技巧就是从根节点开始搜索的时候,如果遇到了某个节点的距离<0,就让它是0,0可以消除负数效应,让后面的点重新参与正常删除操作,这个方法的正确性不难证明,可以自己画一下图。而且还有比较方便的方法就是,记录不被删除的点,然后n-他们就可以了。

  代码如下:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<vector>
#include<queue>
using namespace std;
#define N 100010
#define INF 1e9
struct Node
{
    int to,val;
};
vector<Node> vt[N];
int a[N],n,vis[N],del[N],fa[N],mark[N];
queue<int> que;
queue<int> q1;
void Delete(int u)
{
    int len,v,now;
    while(!q1.empty()) q1.pop();
    q1.push(u);
    del[u] = 1;
    while(!q1.empty())
    {
        now = q1.front();
        q1.pop();
        len = vt[now].size();
        for(int i = 0; i < len; i++)
        {
            v = vt[now][i].to;
            if(!del[v] && fa[u] != v)
            {
                del[v] = 1;
                q1.push(v);
            }
        }
    }
}
void bfs(int s)
{
    que.push(s);
    vis[s] = 0;
    int now,nxt,len,dis;
    while(!que.empty())
    {
        now = que.front();
        que.pop();
        len = vt[now].size();
        for(int i = 0; i < len; i++)
        {
            nxt = vt[now][i].to;
            dis = vt[now][i].val;
            fa[nxt] = now;
            if(vis[nxt] == INF)
            {
                vis[nxt] = vis[now] + dis;
                if(vis[nxt] < 0) vis[nxt] = 0;
                if(vis[nxt] > a[nxt])
                {
                    Delete(nxt);
                }
                else que.push(nxt);
            }
        }
    }
}
int main()
{
    memset(del,0,sizeof(del));
    scanf("%d",&n);
    for(int i = 1; i <= n; i++)
    {
        scanf("%d",&a[i]);
        vt[i].clear();
        fa[i] = i;
        vis[i] = INF;
    }
    int b,wei;
    Node L,R;
    for(int i = 2; i <= n; i++)
    {
        scanf("%d%d",&b,&wei);
        R.to = b; R.val = wei;
        vt[i].push_back(R);
        L.to = i; L.val = wei;
        vt[b].push_back(L);
    }
    while(!que.empty()) que.pop();
    bfs(1);
    int ans = 0;
    for(int i = 1; i <= n; i++)
    {
        if(del[i])
        {
            ans++;
        }
    }
    printf("%d\n",ans);
    return 0;
}
时间: 2024-10-20 00:21:59

CodeForces 682C Alyona and the Tree(广搜 + 技巧)的相关文章

codeforces 682C Alyona and the Tree DFS

这个题就是在dfs的过程中记录到根的前缀和,以及前缀和的最小值 #include <cstdio> #include <iostream> #include <ctime> #include <vector> #include <cmath> #include <map> #include <stack> #include <queue> #include <algorithm> #include

Codeforces 682C Alyona and the Tree(树形DP)

题目大概说给一棵点有权.边也有权的树.一个结点v不高兴当且仅当存在一个其子树上的结点u,使得v到u路径上的边权和大于u的权值.现在要不断地删除叶子结点使得所有结点都高兴,问最少删几个叶子结点. 一开始题目看错了,以为说的是v到u路径上的边权和小于v的权值,然后想出了个解法:从根开始DFS,找高兴的结点,递归过程中在set插入各个祖先结权值,递归返回时从set中删除,而如果set里面最小的元素小于当前结点的路径和那么这个结点就不能要直接return,另外还用到一个简单的数学原理——两个数同时加上相

CodeForces 682C Alyona and the Tree (树上DFS)

题意:给定一棵树,每个叶子有一个权值,每条边也有一个权值,现在让你删最少的结点,使得从任何结点出发到另一个结点的边上权值和都小于两个结点的权值. 析:很明显是DFS,不过要想找出最少的结点可能不太容易,所以我们可以先找出剩下结点最多,那么用总数减去这个就好,那么怎么找哪些结点是剩下的呢?首先要知道,如果一个结点要被删掉, 那么它的子树肯定也要被删掉,并且,要满足dist(v, u) <= a[u]才是可能留下的,那么只要dist(v, u) >a[u],就不要,所以一定要注意的是,结点的距离可

Codeforces 739B Alyona and a tree (树上路径倍增及差分)

题目链接 Alyona and a tree 弄了好几个小时终于Accepted了,之后发现这个题是Div1的. 比较考验我思维的一道好题. 首先,做一遍DFS预处理出t[i][j]和d[i][j].t[i][j]表示从第i个节点到离他第2^j近的祖先,d[i][j]表示从i开始到t[i][j]的路径上的路径权值总和. 在第一次DFS的同时,对节点x进行定位(结果为dist(x, y)<=a(y))的离x最远的x的某个祖先,然后进行O(1)的差分. 第一次DFS完成后,做第二次DFS统计答案(统

E. Three States - Codeforces Round #327 (Div. 2) 591E(广搜)

题目大意:有一个M*N的矩阵,在这个矩阵里面有三个王国,编号分别是123,想知道这三个王国连接起来最少需要再修多少路. 分析:首先求出来每个王国到所有能够到达点至少需要修建多少路,然后枚举所有点求出来最少的即可. 代码如下: --------------------------------------------------------------------------------------------------------- #include<stdio.h> #include<

【判重+广搜(bfs)】魔板

判重+广搜(bfs)]魔板 Time Limit: 1000MS Memory Limit: 32768KB Special Judge 有一个两行四列的魔板,每个格子里有一个1到8的数字(数字唯一),现在我们可以对魔板进行以下操作: 1.交换两行的数字. 2.将第一列移到第二列,第二列到第三列,第三列到第四列,第四列到第一列. 3.将中间四个数顺时针转一次. 现给你初始状态,我末状态请你用最小的步数将它从初始状态变到末状态. 输入: 前两行,每行4个数表示初状态. 后两行,每行4个数表示末状态

CF520B——Two Buttons——————【广搜或找规律】

J - Two Buttons Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Submit Status Practice CodeForces 520B Description Vasya has found a strange device. On the front panel of a device there are: a red button, a blue button a

NYOJ 284 坦克大战 &amp;&amp; POJ 2312 Battle City (广搜+优先队列)

链接:click here~~ 题意: 描述 Many of us had played the game "Battle city" in our childhood, and some people (like me) even often play it on computer now. What we are discussing is a simple edition of this game. Given a map that consists of empty space

Catch That Cow(广搜)

个人心得:其实有关搜素或者地图啥的都可以用广搜,但要注意标志物不然会变得很复杂,想这题,忘记了标志,结果内存超时: 将每个动作扔入队列,但要注意如何更简便,更节省时间,空间 Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and t