BZOJ1576 [Usaco2009 Jan]安全路经Travel
首先用Dijkstra做出最短路生成树,设dis[p]为1到p点的最短路长度
对于一条不在生成树上的边u -> v,不妨设fa为u、v的lca
则一fa到v的路径上的任意点x都可以由u达到,走的方式是1 -> fa -> u -> v -> x,dis'[x] = dis[u] + dis(u, v) + dis[v] - dis[x]
于是可以用dis[u] + dis(u, v) + dis[v]更新fa到v的路径上的所有点
链剖一下,线段树lazytag就好了,连pushdown都不需要
- /**************************************************************
- Problem: 1576
- User: rausen
- Language: C++
- Result: Accepted
- Time:2276 ms
- Memory:16636 kb
- ****************************************************************/
- #include <cstdio>
- #include <algorithm>
- #include <queue>
- using namespace std;
- const int N = 1e5 + ;
- const int M = 2e5 + ;
- const int inf = 1e9;
- struct edge {
- int next, to, v, vis;
- edge(int _n = , int _t = , int _v = , int __v = ) : next(_n), to(_t), v(_v), vis(__v) {}
- } e[M << ];
- struct heap_node {
- int v, e, to;
- heap_node(int _v = , int _e = , int _t = ) : v(_v), e(_e), to(_t) {}
- inline bool operator < (const heap_node &p) const {
- return v > p.v;
- }
- };
- struct tree_node {
- int fa, sz, dep;
- int top, son, e;
- int w;
- } tr[N];
- struct seg_node {
- seg_node *ls, *rs;
- int mn;
- } *seg_root, *seg_null, mempool[N << ], *cnt_seg = mempool;
- int n, m, cnt_q;
- int first[N], tot = ;
- int dis[N];
- priority_queue <heap_node> h;
- inline int read() {
- static int x;
- static char ch;
- x = , ch = getchar();
- while (ch < '' || '' < ch)
- ch = getchar();
- while ('' <= ch && ch <= '') {
- x = x * + ch - '';
- ch = getchar();
- }
- return x;
- }
- inline void Add_Edges(int x, int y, int v) {
- e[++tot] = edge(first[x], y, v), first[x] = tot;
- e[++tot] = edge(first[y], x, v), first[y] = tot;
- }
- inline void add_to_heap(int p) {
- static int x;
- for (x = first[p]; x; x = e[x].next)
- if (dis[e[x].to] == inf)
- h.push(heap_node(e[x].v + dis[p], x, e[x].to));
- }
- void Dijkstra(int S) {
- int p;
- for (p = ; p <= n; ++p) dis[p] = inf;
- while (!h.empty()) h.pop();
- dis[S] = , add_to_heap(S);
- while (!h.empty()) {
- if (dis[h.top().to] != inf) {
- h.pop();
- continue;
- }
- p = h.top().to;
- dis[p] = h.top().v, e[tr[p].e = h.top().e].vis = ;
- h.pop(), add_to_heap(p);
- }
- }
- #define y e[x].to
- #define Son tr[p].son
- void dfs(int p) {
- int x;
- tr[p].sz = ;
- for (x = first[p]; x; x = e[x].next)
- if (tr[y].e == x) {
- tr[y].dep = tr[p].dep + ;
- dfs(y);
- tr[p].sz += tr[y].sz;
- if (Son == || tr[y].sz > tr[Son].sz) Son = y;
- }
- }
- void DFS(int p) {
- int x;
- tr[p].w = ++cnt_q;
- if (Son)
- tr[Son].top = tr[p].top, DFS(Son);
- for (x = first[p]; x; x = e[x].next)
- if (y != Son && tr[y].e == x)
- tr[y].top = y, DFS(y);
- }
- #undef y
- #undef Son
- #define mid (l + r >> 1)
- #define Ls p -> ls
- #define Rs p -> rs
- #define Mn p -> mn
- inline void seg_make_null(seg_node *&p) {
- p = cnt_seg, Ls = Rs = p, Mn = inf;
- }
- inline void seg_new(seg_node *&p) {
- p = ++cnt_seg, *p = *seg_null;
- }
- void seg_build(seg_node *&p, int l, int r) {
- seg_new(p);
- if (l == r) return;
- seg_build(Ls, l, mid), seg_build(Rs, mid + , r);
- }
- void seg_modify(seg_node *p, int l, int r, int L, int R, int v) {
- if (L <= l && r <= R) {
- Mn = min(Mn, v);
- return;
- }
- if (L <= mid) seg_modify(Ls, l, mid, L, R, v);
- if (mid + <= R) seg_modify(Rs, mid + , r, L, R, v);
- }
- int seg_query(seg_node *p, int l, int r, int pos) {
- if (l == r) return Mn;
- return min(Mn, pos <= mid ? seg_query(Ls, l, mid, pos) : seg_query(Rs, mid + , r, pos));
- }
- #undef mid
- #undef Ls
- #undef Rs
- #undef Mn
- int get_lca(int x, int y) {
- while (tr[x].top != tr[y].top) {
- if (tr[tr[x].top].dep < tr[tr[y].top].dep) swap(x, y);
- x = tr[tr[x].top].fa;
- }
- if (tr[x].dep < tr[y].dep) swap(x, y);
- return y;
- }
- void work_modify(int x, int fa, int v) {
- while (tr[x].top != tr[fa].top) {
- seg_modify(seg_root, , n, tr[tr[x].top].w, tr[x].w, v);
- x = tr[tr[x].top].fa;
- }
- seg_modify(seg_root, , n, tr[fa].w + , tr[x].w, v);
- }
- int main() {
- int i, x, y, z, fa, tmp;
- n = read(), m = read();
- for (i = ; i <= m; ++i) {
- x = read(), y = read(), z = read();
- Add_Edges(x, y, z);
- }
- Dijkstra();
- for (i = ; i <= n; ++i)
- tr[i].fa = e[tr[i].e ^ ].to;
- dfs();
- tr[].top = , DFS();
- seg_make_null(seg_null);
- seg_build(seg_root, , n);
- #define y e[x].to
- for (i = ; i <= n; ++i)
- for (x = first[i]; x; x = e[x].next)
- if (!e[x].vis) work_modify(y, get_lca(i, y), dis[i] + dis[y] + e[x].v);
- #undef y
- for (i = ; i <= n; ++i) {
- tmp = seg_query(seg_root, , n, tr[i].w);
- printf("%d\n", tmp == inf ? - : tmp - dis[i]);
- }
- return ;
- }
BZOJ1576 [Usaco2009 Jan]安全路经Travel的更多相关文章
- 【思维题 并查集 图论】bzoj1576: [Usaco2009 Jan]安全路经Travel
有趣的思考题 Description Input * 第一行: 两个空格分开的数, N和M * 第2..M+1行: 三个空格分开的数a_i, b_i,和t_i Output * 第1..N-1行: 第 ...
- BZOJ1576: [Usaco2009 Jan]安全路经Travel(树链剖分)
Description Input * 第一行: 两个空格分开的数, N和M * 第2..M+1行: 三个空格分开的数a_i, b_i,和t_i Output * 第1..N-1行: 第i行包含一个数 ...
- BZOJ1576: [Usaco2009 Jan]安全路经Travel(最短路 并查集)
题意 给你一张无向图,保证从1号点到每个点的最短路唯一.对于每个点求出删掉号点到它的最短路上的最后一条边(就是这条路径上与他自己相连的那条边)后1号点到它的最短路的长度 Sol emmm,考场上想了个 ...
- [BZOJ1576] [Usaco2009 Jan]安全路经Travel(堆优化dijk + (并查集 || 树剖))
传送门 蒟蒻我原本还想着跑两边spfa,发现不行,就gg了. 首先这道题卡spfa,所以需要用堆优化的dijkstra求出最短路径 因为题目中说了,保证最短路径有且只有一条,所以可以通过dfs求出最短 ...
- 【BZOJ1576】[Usaco2009 Jan]安全路经Travel 最短路+并查集
[BZOJ1576][Usaco2009 Jan]安全路经Travel Description Input * 第一行: 两个空格分开的数, N和M * 第2..M+1行: 三个空格分开的数a_i, ...
- bzoj 1576: [Usaco2009 Jan]安全路经Travel 树链剖分
1576: [Usaco2009 Jan]安全路经Travel Time Limit: 10 Sec Memory Limit: 64 MB Submit: 665 Solved: 227[Sub ...
- [Usaco2009 Jan]安全路经Travel BZOJ1576 Dijkstra+树链剖分+线段树
分析: Dijkstra求最短路树,在最短路树上进行操作,详情可见上一篇博客:http://www.cnblogs.com/Winniechen/p/9042937.html 我觉得这个东西不压行写出 ...
- bzoj 1576 [Usaco2009 Jan]安全路经Travel(树链剖分,线段树)
[题意] 给定一个无向图,找到1-i所有的次短路经,要求与最短路径的最后一条边不重叠. [思路] 首先用dijkstra算法构造以1为根的最短路树. 将一条无向边看作两条有向边,考察一条不在最短路树上 ...
- bzoj 1576: [Usaco2009 Jan]安全路经Travel——并查集+dijkstra
Description Input * 第一行: 两个空格分开的数, N和M * 第2..M+1行: 三个空格分开的数a_i, b_i,和t_i Output * 第1..N-1行: 第i行包含一个数 ...
随机推荐
- NS_ASSUME_NONNULL_BEGIN,NS_ASSUME_NONNULL_END
Nonnull区域设置(Audited Regions) 如果需要每个属性或每个方法都去指定nonnull和nullable,是一件非常繁琐的事.苹果为了减轻我们的工作量,专门提供了两个宏:NS_AS ...
- 纯js写验证码
<html> <head> <meta name="viewport" content="width=device-width" ...
- FLASH CC 2015 CANVAS (二)html中写JS调用flash中的元件、函数、变量
注意 此贴 为个人边“开荒”边写,所以不保证就是最佳做法,也难免有错误! 正式教程会在后续开始更新 当你导出第一个canvas后,你会在保存fla的文件夹里 (每个项目默认位置)看到 如下文件,(请先 ...
- ubuntu 安装遇到黑屏
1.安装了ubuntu之后,进入登录页面,然后用输入密码后就黑屏了,按ctrl+alt+f1都没用,也进不去命令界面,查找资料后发现是必须在虚拟机->设置->硬件->显示器,上把加速 ...
- compile,build和execute的区别
一个c程序的生成要经历以下步骤: 1.编写文本代码,生成c或cpp文件,这时候它还是文本的: 2.编译,就是compile,由c编译程序对你写的代码进行词法和句法分析,发现并报告错误,有错时编译不能通 ...
- linux install sublime_text3
ubuntu & debian: (baidu or google) 1). download ***.deb to install inux系统下怎么安装.deb文件? deb 是 ubun ...
- 图形处理的api
[1]旋转 public class MainActivity extends Activity { private float degrees;// 图片旋转的角度 @Override ...
- Delphi 过程与函数
注:该内容整理自以下链接. http://chanlei001.blog.163.com/blog/static/340306642011111615445266/ delphi 过程以保留字proc ...
- iOS开发之 xcode6 APP 打包提交审核详细步骤
一. 在xcode6.1和ios10.10.1环境下实现app发布 http://blog.csdn.net/mad1989/article/details/8167529 http://jingya ...
- FATAL ha.BootstrapStandby: Unable to fetch namespace information from active NN at ***
This problem (Unable to fetch namespace information from active NN) occurs, because the active namen ...