Codeforces 787D. Legacy 线段树优化建图+最短路

output

standard output

Rick and his co-workers have made a new radioactive formula and a lot of bad guys are after them. So Rick wants to give his legacy to Morty before bad guys catch them.

There are n planets in their universe numbered from 1 to n. Rick is in planet number s (the earth) and he doesn‘t know where Morty is. As we all know, Rick owns a portal gun. With this gun he can open one-way portal from a planet he is in to any other planet (including that planet). But there are limits on this gun because he‘s still using its free trial.

By default he can not open any portal by this gun. There are q plans in the website that sells these guns. Every time you purchase a plan you can only use it once but you can purchase it again if you want to use it more.

Plans on the website have three types:

  1. With a plan of this type you can open a portal from planet v to planet u.
  2. With a plan of this type you can open a portal from planet v to any planet with index in range [l,?r].
  3. With a plan of this type you can open a portal from any planet with index in range [l,?r] to planet v.

Rick doesn‘t known where Morty is, but Unity is going to inform him and he wants to be prepared for when he finds and start his journey immediately. So for each planet (including earth itself) he wants to know the minimum amount of money he needs to get from earth to that planet.

Input

The first line of input contains three integers nq and s (1?≤?n,?q?≤?105, 1?≤?s?≤?n) — number of planets, number of plans and index of earth respectively.

The next q lines contain the plans. Each line starts with a number t, type of that plan (1?≤?t?≤?3). If t?=?1 then it is followed by three integers vu and w where w is the cost of that plan (1?≤?v,?u?≤?n, 1?≤?w?≤?109). Otherwise it is followed by four integers vlr and w where w is the cost of that plan (1?≤?v?≤?n, 1?≤?l?≤?r?≤?n, 1?≤?w?≤?109).

Output

In the first and only line of output print n integers separated by spaces. i-th of them should be minimum money to get from earth to i-th planet, or ?-?1 if it‘s impossible to get to that planet.

题意:和BZOJ3073很像,当然这里是有向图以及好像边权不一样一点。

题解:线段树优化建图+最短路。今天偶然翻别人博客看到的题,之前暑假多校也有一个,就是给你两个区间(a,b)->(c,d)连边然后跑单源最短路,在被数据结构降智后现在当然知道这要用线段树优化了QAQ。虽然建图方式还是很玄学但我们可以这样思考,首先建两颗线段树,一颗是出树一颗是入树,显然你可以从出树向入树连边,同时跑单源最短路显然你是从出树的某个叶子结点出发的,那么不难想到我们要向他们的父亲连边,反之入树要跑到某个叶子,所以父亲向儿子连边。同时入树的叶子连向出树的叶子表明可以再从出树走。然后对于这道题的三个操作再连边,这个就是类似区间更新搞一下就好了。然后答案就是入树中各个点的值,其中要特判起点。然后我一开始RE41了好几次,不懂,都已经开到1e5+7<<4了,感觉没爆,直接开到2e5就过了。。玄学。至于为什么BZOJ的题解多读入又简单我不做???向权限题势力低头。

#include<bits/stdc++.h>
#define ll long long
#define ls x<<1
#define rs x<<1|1
#define pb push_back
#define _mp make_pair
#define ldb long double
using namespace std;
const int maxn=2e5+7;
const ll inf=1e18;
inline ll read()
{
	int 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;
}
ll fir[maxn<<4],nxt[maxn<<4],to[maxn<<4];
ll v[maxn<<4];
int pos[maxn<<2];
int vis[maxn<<4];
ll cnt,tot;
int n,m,s;
ll dis[maxn<<4];
struct Node
{
	ll w;
	int pl;
	friend bool operator<(Node a,Node b)
	{
		return a.w>b.w;
	}
	Node(){}
	Node(ll vv,int y){w=vv;pl=y;}
};
priority_queue<Node>que;
void add_e(ll x,ll y,ll w)
{
	++cnt;nxt[cnt]=fir[x];fir[x]=cnt;to[cnt]=y;v[cnt]=w;
}
void build(int x,int l,int r,int flag,ll w)
{
	if(l==r)
	{
		if(!flag)add_e(x+4*n,x,0);
		else pos[l]=x;
		return;
	}
	int mid=(l+r)>>1;
	build(x<<1,l,mid,flag,w);
	build(x<<1|1,mid+1,r,flag,w);
	if(!flag)add_e(ls,x,0),add_e(rs,x,0);
	else add_e(x+4*n,(ls)+4*n,0),add_e(x+4*n,(rs)+4*n,0);
}
void update(int x,int l,int r,int L,int R,int M,int flag,ll w)
{
	if(L<=l&&r<=R)
	{
		if(!flag)
		{
			add_e(pos[M],x+4*n,w);
		}
		else
		{
			add_e(x,pos[M]+4*n,w);
		}
		return;
	}
	int mid=(l+r)>>1;
	if(L<=mid)update(ls,l,mid,L,R,M,flag,w);
	if(R>mid)update(rs,mid+1,r,L,R,M,flag,w);
}
void dij(int x)
{
	for(int i=1;i<=n*10;i++)dis[i]=inf;
	memset(vis,0,sizeof(vis));
	dis[x]=0;
	while(!que.empty())que.pop();
	que.push(Node(0ll,x));
	while(!que.empty())
	{
		Node vv=que.top();que.pop();
	//	cout<<vv.pl<<endl;
		if(vis[vv.pl])continue;
		vis[vv.pl]=1;
		for(int i=fir[vv.pl];i;i=nxt[i])
		{
			int tmp=to[i];
		//	cout<<tmp<<endl;
			if(dis[tmp]>dis[vv.pl]+v[i])
			{
				dis[tmp]=dis[vv.pl]+v[i];
				que.push(Node(dis[tmp],tmp));
			}
		}
	}
}
int main()
{
	scanf("%d%d%d",&n,&m,&s);
	memset(fir,0,sizeof(fir));
	memset(pos,0,sizeof(pos));
	cnt=0;
	build(1,1,n,0,0);
	build(1,1,n,1,0);
	int pp,qq,rr,ss,gg;
	ll fv;
	for(int i=1;i<=m;i++)
	{
		scanf("%d",&pp);
		if(pp==1)
		{
			qq=read();rr=read();fv=read();
			add_e(pos[qq],pos[rr]+4*n,fv);
		}
		else if(pp==2)
		{
			qq=read();rr=read();gg=read();fv=read();
			update(1,1,n,rr,gg,qq,0,fv);
		}
		else
		{
			qq=read();rr=read();gg=read();fv=read();
			update(1,1,n,rr,gg,qq,1,fv);
		}
	}
	dij(pos[s]);
	for(int i=1;i<=n;i++)
	{
		if(i==s)printf("0");
		else if(dis[pos[i]+4*n]!=inf)printf("%I64d",dis[pos[i]+4*n]);
		else printf("-1");
		if(i!=n)printf(" ");
		else printf("\n");
		/*if(dis[pos[i]]!=inf)
		{
			printf("%lld ",dis[pos[i]]);
		}
		else printf("-1 ");*/
		//cout<<dis[pos[i]+4*n]<<endl;
	}
}

  

原文地址:https://www.cnblogs.com/intwentieth/p/9746028.html

时间: 2024-10-14 04:06:41

Codeforces 787D. Legacy 线段树优化建图+最短路的相关文章

CF786B Legacy(线段树优化建图+最短路)

在qbxt某营集体做的 题解里以及外地OIer基本上都写两颗线段树的 而我们六安的OIer神TM思维一致--只用一颗线段树,类似于一维分层图的思想,第二层上与第一层相对应的结点的编号是第一层结点编号+NUM,而且貌似比分颗的思维正常一点,因为满足lson=k<<1,rson=k<<1|1,和一般的线段树相似度高. 至于为什么要分颗或分层,容易想明白树边(辅助边)必须是双向的(因为要用祖先结点的出入信息),但如果不分颗或分层的话求出来最短路不很明显是0了吗QwQ 所以分层的话父向子应

【bzoj4276】[ONTAK2015]Bajtman i Okr?g?y Robin 线段树优化建图+费用流

题目描述 有n个强盗,其中第i个强盗会在[a[i],a[i]+1],[a[i]+1,a[i]+2],...,[b[i]-1,b[i]]这么多段长度为1时间中选出一个时间进行抢劫,并计划抢走c[i]元.作为保安,你在每一段长度为1的时间内最多只能制止一个强盗,那么你最多可以挽回多少损失呢? 输入 第一行包含一个正整数n(1<=n<=5000),表示强盗的个数. 接下来n行,每行包含三个正整数a[i],b[i],c[i](1<=a[i]<b[i]<=5000,1<=c[i]

【bzoj3073】[Pa2011]Journeys 线段树优化建图+堆优化Dijkstra

题目描述 Seter建造了一个很大的星球,他准备建造N个国家和无数双向道路.N个国家很快建造好了,用1..N编号,但是他发现道路实在太多了,他要一条条建简直是不可能的!于是他以如下方式建造道路:(a,b),(c,d)表示,对于任意两个国家x,y,如果a<=x<=b,c<=y<=d,那么在xy之间建造一条道路.Seter保证不会有一个国家与自己之间有道路. Seter好不容易建好了所有道路,他现在在位于P号的首都.Seter想知道P号国家到任意一个国家最少需要经过几条道路.当然,Se

【BZOJ3681】Arietta 树链剖分+可持久化线段树优化建图+网络流

[BZOJ3681]Arietta Description Arietta 的命运与她的妹妹不同,在她的妹妹已经走进学院的时候,她仍然留在山村中.但是她从未停止过和恋人 Velding 的书信往来.一天,她准备去探访他.对着窗外的阳光,临行前她再次弹起了琴.她的琴的发声十分特殊.让我们给一个形式化的定义吧.所有的 n 个音符形成一棵由音符 C ( 1 号节点) 构成的有根树,每一个音符有一个音高 Hi .Arietta 有 m 个力度,第 i 个力度能弹出 Di 节点的子树中,音高在 [Li,R

【ARC069F】Flags 2-sat+线段树优化建图+二分

Description ? 数轴上有 n 个旗子,第 ii 个可以插在坐标 xi或者 yi,最大化两两旗子之间的最小距离. Input ? 第一行一个整数 N. ? 接下来 N 行每行两个整数 xi,yi Output ? 一个整数表示答案. Sample Input Sample #1 3 1 3 2 5 1 9 Sample #2 5 2 2 2 2 2 2 2 2 2 2 Sample #3 22 93 6440 78 6647 862 11 8306 9689 798 99 801 52

一个神秘的oj2587 你猜是不是dp(线段树优化建图)

哇 这难道不是happiness的翻版题嘛? 从\(S\)向一个点连染成白色的收益 从这个点向\(T\)连染成黑色的收益 对于额外的收益,建一个辅助点,跟区间内的每个点连\(inf\),然后向S/T,连流量为收益 这不就结束了吗? 自信写完,提交 woc!!只有40分? #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> #include<cmath>

机房测试5:reverse(bfs+set 或 线段树优化建图)

题目: 分析: 首先画样例分析一下,会发现如果要求一个位置要多少次翻转,就将这个位置向与它关联的点连边(关联点指的是可能与它值互换的位置),一直连到起点为止,连边的次数即为它所需步数. 所以转换成求单源最短路,因为边权为1,可以用bfs. 但是这道题n的范围很大,刚刚的做法是n*k的,考虑优化. 法1:在建图上优化 题目要求的是区间翻转,所以也对应着相关性质:每个点连边一定是都连的奇数点或偶数点(画图可知),且这些奇数偶数点都对应着一段连续的区间. 如果可以将点向点连边优化成点向区间连边,复杂度

bzoj5017 [Snoi2017]炸弹 (线段树优化建图+)tarjan 缩点+拓扑排序

题目传送门 https://lydsy.com/JudgeOnline/problem.php?id=5017 题解 这个题目方法挺多的. 线段树优化建图 线段树优化建图的做法应该挺显然的,一个炸弹能够引爆的炸弹的显然应该是一个区间里面的,直接对这个区间进行线段树优化建图. 这样可以得到一个带环图,缩点以后这个炸弹能够炸到的炸弹就是从这个点能够走到的点. 但是这个不太好做,不过可以发现最终的炸弹也是一个区间,所以可以通过缩点后的 DAG 来求出左右端点. 时间复杂度 \(O(n\log n)\)

CF786B Legacy(线段树优化建图)

题意 有n个点,q个询问,每次询问有一种操作.操作1:u→[l,r](即u到l,l+1,l+2,...,r距离均为w)的距离为w:操作2:[l,r]→u的距离为w:操作3:u到v的距离为w:求起点到其他点的最短距离,到达不了输出-1. 题解 线段树骚操作,线段树优化建图. 其实提到可以这么操作后,实现还是很好想的. 建两颗线段树,一颗连进边,一颗连出边. 1 #include<iostream> 2 #include<cstdio> 3 #include<cmath>