Codeforces 796D. Police Stations (思维+bfs)

简介: Codeforces 796D. Police Stations (思维+bfs)

原题链接

题意:

给定一棵树,树上有一些点是警察局,要求所有点到最近的警察局的距离不大于d,求最多能删几条边。

思路:

光看简略版题意可能会漏掉重要信息,原题中有这样一句话:


from each city it must be possible to reach a police station by traveling at most d kilometers along the roads.


也就是说原图就是满足条件的。

因为要求最近的警察局,很容易想到bfs,我们对所有的警察局进行标号,并且从所有的警察局出发进行bfs,这样如果某条边的两个端点的颜色不一样,就说明这条边可以删去,并且删去后端点依旧可以到达另一个警察局。

由于bfs的性质和原图的条件,这样删除是合法的。


代码:

#pragma GCC optimize(2)
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll>PLL;
typedef pair<int,int>PII;
typedef pair<double,double>PDD;
#define I_int ll
inline ll read()
{
    ll x=0,f=1;
    char ch=getchar();
    while(ch<'0'||ch>'9')
    {
        if(ch=='-')f=-1;
        ch=getchar();
    }
    while(ch>='0'&&ch<='9')
    {
        x=x*10+ch-'0';
        ch=getchar();
    }
    return x*f;
}
#define read read()
#define closeSync ios::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define multiCase int T;cin>>T;for(int t=1;t<=T;t++)
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define repp(i,a,b) for(int i=(a);i<(b);i++)
#define per(i,a,b) for(int i=(a);i>=(b);i--)
#define perr(i,a,b) for(int i=(a);i>(b);i--)
ll ksm(ll a,ll b,ll p)
{
    ll res=1;
    while(b)
    {
        if(b&1)res=res*a%p;
        a=a*a%p;
        b>>=1;
    }
    return res;
}
#define PI acos(-1)
#define x first
#define y second
const int maxn=1e6+7,inf=0x3f3f3f3f;
int n,k,d,idx;
vector<int>g[maxn];
int vis[maxn];
PII p[maxn];
queue<PII>q;
void bfs(){
    while(!q.empty()){
        PII t=q.front();q.pop();
        for(int v:g[t.x]){
            if(!vis[v]){
                vis[v]=t.y;
                q.push({v,vis[v]});
            }
        }
    }
}
int main()
{
    n=read,k=read,d=read;
    for(int i=1;i<=k;i++){
        int x=read;
        if(!vis[x]) vis[x]=++idx;
        q.push({x,vis[x]});
    }
    for(int i=1;i<n;i++){
        int u=read,v=read;
        g[u].push_back(v);
        g[v].push_back(u);
        p[i]={u,v};
    }
    bfs();
    vector<int>v;
    for(int i=1;i<n;i++)
        if(vis[p[i].x]!=vis[p[i].y]){
            v.push_back(i);
        }
    cout<<v.size()<<endl;
    for(int t:v) cout<<t<<" ";
    return 0;
}
目录
相关文章
|
6月前
|
人工智能
倍增LCA受到启发的一题
倍增LCA受到启发的一题
32 0
|
边缘计算 缓存 算法
LeetCode 双周赛 102,模拟 / BFS / Dijkstra / Floyd
昨晚是 LeetCode 双周赛第 102 场,你参加了吗?这场比赛比较简单,拼的是板子手速,继上周掉大分后算是回了一口血 😁。
111 0
|
算法 JavaScript 前端开发
好的,BFS,又学废了!
BFS —— 广度优先搜索,咱们在数据结构课一定会学的。一起的还有前、中、后序遍历、DFS(深度优先搜索), 它们都是二叉树遍历的算法!
Codeforces1153——D. Serval and Rooted Tree(思维好题+dfs+贪心)
Codeforces1153——D. Serval and Rooted Tree(思维好题+dfs+贪心)
129 0
Codeforces1153——D. Serval and Rooted Tree(思维好题+dfs+贪心)
luogu P2391 白雪皑皑 (并查集 思维)
luogu P2391 白雪皑皑 (并查集 思维)
54 0
luogu P2391 白雪皑皑 (并查集 思维)
|
人工智能
Codeforces1491——C.Pekora and Trampoline(差分思维+树状数组)
Codeforces1491——C.Pekora and Trampoline(差分思维+树状数组)
105 0
Codeforces1491——C.Pekora and Trampoline(差分思维+树状数组)
|
机器学习/深度学习 C++
【力扣·每日一题】1036. 逃离大迷宫 (C++ bfs 思维)
【力扣·每日一题】1036. 逃离大迷宫 (C++ bfs 思维)
96 0
【力扣·每日一题】1036. 逃离大迷宫 (C++ bfs 思维)
|
人工智能
codeforces455——A. Boredom(线性DP)
codeforces455——A. Boredom(线性DP)
126 0
codeforces455——A. Boredom(线性DP)
codeforces319——B. Psychos in a Line(思维+单调栈)
codeforces319——B. Psychos in a Line(思维+单调栈)
94 0
codeforces319——B. Psychos in a Line(思维+单调栈)
|
人工智能
每天两道 CodeForces 构造/思维题 (day5)
每天两道 CodeForces 构造/思维题 (day5)
每天两道 CodeForces 构造/思维题 (day5)