首先先膜杜教orz

这里简单说一下支配树的概念

支配树是对一个有向图来讲的

规定一个起点s,如果s到v的路径上必须经过某些点u,那么离s最近的点u就是v的支配点

在树上的关系就是,v的父亲是u。

一般图的支配树需要使用tarjan算法,但是如果有向图是没有环的,可以采用另一种做法

按照拓扑序建立支配树,每次加点的时候,枚举能到它的所有点,求它们在当前支配树的最近公共祖先,那个点就是该点的支配点

这个题先建立一个最短路图,易知,这个图是没有环的有向图,所以建立支配树的时候就可以采用以上做法

orz 膜杜教代码,写得太飘逸了

#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
#include <set>
//对pair的一种有效快捷的利用
#define fi first
#define se second
#define mp make_pair
using namespace std; typedef long long ll;
const int maxn = ;
ll dis[maxn];
int vis[maxn], ord[maxn], deep[maxn], sz[maxn];
int p[maxn][];
//dij时用的堆
set <pair<ll, int> > hs;
//利用pair简化邻接表
vector < pair<int, ll>> e[maxn];
const ll inf = 1ll<<;
void Dijk(int S, int n)
{
for(int i = ; i <= n; i++) dis[i] = inf, vis[i] = ;
dis[S] = ;
for(int i = ; i <= n; i++) hs.insert(mp(dis[i], i));
for(int i = ; i < n; i++)
{
int u = (hs.begin())->se; hs.erase(hs.begin());
vis[u] = ; ord[i] = u; //求最短路时顺便得到拓扑序orz
for(int j = ; j < e[u].size(); j++)
{
int v = e[u][j].fi;
if(dis[v] > dis[u] + e[u][j].se)
{
hs.erase(mp(dis[v], v));
dis[v] = dis[u] + e[u][j].se;
hs.insert(mp(dis[v], v));
}
}
}
} int lca(int u, int v) //二进制倍增求LCA
{
if(deep[u] > deep[v]) swap(u, v);
for(int i = ; i >= ; i--) if(deep[p[v][i]] >= deep[u]) v = p[v][i];
if(u == v) return u;
for(int i = ; i >= ; i--) if(p[v][i] != p[u][i]) u = p[u][i], v = p[v][i];
return p[u][];
}
int n, m, s, u, v, w;
int main()
{
//freopen("a.txt", "r", stdin);
cin>>n>>m>>s;
for(int i = ; i <= m; i++)
{
cin>>u>>v>>w;
e[u].push_back(mp(v, w));
e[v].push_back(mp(u, w));
}
Dijk(s, n);
p[s][] = ; deep[s] = ;
//构建最短路图的过程并建立支配树
for(int i = ; i <= n; i++)
{
int d = -, u = ord[i];
for(auto p : e[u])
{
if(dis[p.fi] + p.se == dis[u])
{
if(d == -) d = p.fi;
else d = lca(d, p.fi);
}
}
p[u][] = d; deep[u] = deep[d]+;
for(int j = ; j < ; j++) p[u][j] = p[p[u][j-]][j-]; //动态更新公共祖先
}
for(int i = ; i <= n; i++) sz[i] = ;
int ret = ;
for(int i = n-; i >= ; i--) //按照拓扑序dp求最大值
{
u = ord[i];
sz[p[u][]] += sz[u];
if(dis[u] <= (1ll<<)) ret = max(ret, sz[u]);
}
cout<<ret<<endl;
}

Codeforces Round #391 div1 757F (Dominator Tree)的更多相关文章

  1. Codeforces Round #543 Div1题解(并不全)

    Codeforces Round #543 Div1题解 Codeforces A. Diana and Liana 给定一个长度为\(m\)的序列,你可以从中删去不超过\(m-n*k\)个元素,剩下 ...

  2. Codeforces Round #545 Div1 题解

    Codeforces Round #545 Div1 题解 来写题解啦QwQ 本来想上红的,结果没做出D.... A. Skyscrapers CF1137A 题意 给定一个\(n*m\)的网格,每个 ...

  3. Codeforces Round #539 Div1 题解

    Codeforces Round #539 Div1 题解 听说这场很适合上分QwQ 然而太晚了QaQ A. Sasha and a Bit of Relax 翻译 有一个长度为\(n\)的数组,问有 ...

  4. Codeforces Round #499 (Div. 1) F. Tree

    Codeforces Round #499 (Div. 1) F. Tree 题目链接 \(\rm CodeForces\):https://codeforces.com/contest/1010/p ...

  5. [Codeforces Round #254 div1] C.DZY Loves Colors 【线段树】

    题目链接:CF Round #254 div1 C 题目分析 这道题目是要实现区间赋值的操作,同时还要根据区间中原先的值修改区间上的属性权值. 如果直接使用普通的线段树区间赋值的方法,当一个节点表示的 ...

  6. Educational Codeforces Round 6 E. New Year Tree dfs+线段树

    题目链接:http://codeforces.com/contest/620/problem/E E. New Year Tree time limit per test 3 seconds memo ...

  7. Codeforces Round #353 (Div. 2) D. Tree Construction 二叉搜索树

    题目链接: http://codeforces.com/contest/675/problem/D 题意: 给你一系列点,叫你构造二叉搜索树,并且按输入顺序输出除根节点以外的所有节点的父亲. 题解: ...

  8. Codeforces Educational Codeforces Round 3 E. Minimum spanning tree for each edge LCA链上最大值

    E. Minimum spanning tree for each edge 题目连接: http://www.codeforces.com/contest/609/problem/E Descrip ...

  9. Codeforces Round #540 (Div. 3)--1118F1 - Tree Cutting (Easy Version)

    https://codeforces.com/contest/1118/problem/F1 #include<bits/stdc++.h> using namespace std; in ...

随机推荐

  1. ThinkPHP框架目录的介绍

    library目录 Think目录 mvc

  2. Teen Readers【青少年读者】

    Teen Readers Teens and younger children are reading a lot less for fun, according to a Common Sense ...

  3. 数字滤波器的MATLAB与FPGA实现--Altera/Verilog版的pdf版,杜勇等编著的书。

    自己在网上找了很久才找到的资源,花了很大的劲,觉得不易,特地分享给大家.本书讲了使用FPGA的Fir IIR IP核与Matlab配合使用生成滤波器的详细使用方法.贴出地址,http://downlo ...

  4. 三种urllib实现网页下载,含cookie模拟登陆

    coding=UTF-8 import re import urllib.request, http.cookiejar, urllib.parse # # print('-------------- ...

  5. 初步学习pg_control文件之十三

    接前文,初步学习pg_control文件之十二 看这个: * backupStartPoint is the redo pointer of the backup start checkpoint, ...

  6. KMP python实现

    首先去 https://blog.csdn.net/starstar1992/article/details/54913261/ 这里看下思想: 然后代码实现,一定要多调试几遍方能看懂: def ge ...

  7. HashMap源码注释翻译

    HashMap.java(JDK1.8) 如有错误翻译的地方,欢迎评论指出. 介绍:对于HashMap及其子类而言,它们采用Hash算法来决定集合中元素的存储位置.当系统开始初始化HashMap时,系 ...

  8. netty学习记录2

    昨天晚上在看到7.2章MessagePack编码器和解码器开发这一章时,书里面没有贴出全部的代码,然后我按照我自己的想法把代码补全后,发现死活没有把代码跑通. 然后花了挺多时间在网上找,很多博客都贴出 ...

  9. 类的__new__方法使用

    class Person(object): def __init__(self): self.name ="aaa" def defineName(self): self.name ...

  10. NB-IOT的键值对

    1. 关于NB-IOT的软件开发,有一个功能,NB收到数据的时候可以唤醒处于低功耗下的MCU. 2. 2个键值对可以配置这个功能.使用键值对的方式. 3. 遇到的第一个问题,<config> ...