洛谷P3084 [USACO13OPEN] Photo G

题目描述


Farmer John has decided to assemble a panoramic photo of a lineup of his N cows (1 <= N <= 200,000), which, as always, are conveniently numbered from 1..N. Accordingly, he snapped M (1 <= M <= 100,000) photos, each covering a contiguous range of cows: photo i contains cows a_i through b_i inclusive. The photos collectively may not necessarily cover every single cow.

After taking his photos, FJ notices a very interesting phenomenon: each photo he took contains exactly one cow with spots! FJ was aware that he had some number of spotted cows in his herd, but he had never actually counted them. Based on his photos, please determine the maximum possible number of spotted cows that could exist in his herd. Output -1 if there is no possible assignment of spots to cows consistent with FJ's photographic results.

农夫约翰决定给站在一条线上的N(1 <= N <= 200,000)头奶牛制作一张全家福照片,N头奶牛编号1到N。

于是约翰拍摄了M(1 <= M <= 100,000)张照片,每张照片都覆盖了连续一段奶牛:第i张照片中包含了编号a_i 到 b_i的奶牛。但是这些照片不一定把每一只奶牛都拍了进去。

在拍完照片后,约翰发现了一个有趣的事情:每张照片中都有且仅有一只身上带有斑点的奶牛。约翰意识到他的牛群中有一些斑点奶牛,但他从来没有统计过它们的数量。 根据照片,请你帮约翰估算在他的牛群中最多可能有多少只斑点奶牛。如果无解,输出“-1”。

Input

输入格式

* Line 1: Two integers N and M.
* Lines 2..M+1: Line i+1 contains a_i and b_i.

输出格式


* Line 1: The maximum possible number of spotted cows on FJ's farm, or -1 if there is no possible solution.

输入输出样例


输入 #1


5 3 
1 4 
2 5 
3 4 


输出 #1


1


说明/提示


There are 5 cows and 3 photos. The first photo contains cows 1 through 4, etc.

From the last photo, we know that either cow 3 or cow 4 must be spotted. By choosing either of these, we satisfy the first two photos as well.

题目分析

差分约束裸题

但要注意纯spfa会被卡超时,用双端队列优化

同时还要加入过时退出:
 

#include<bits/stdc++.h>
using namespace std;
int n,m;
struct Edge{
	int v;
	int w;
	int next;
}edge[1000010];
int cnt,head[200010],add[200010],vis[200010],dis[200010];
deque<int> deq;
void add_edge(int u,int v,int w)
{
	edge[++cnt]=(Edge){v,w,head[u]};
	head[u]=cnt;
}
int main()
{
	memset(head,-1,sizeof(head));
	cin>>n>>m;
	for(int i=1;i<=n;i++)
	{
		add_edge(i,i-1,0);
		add_edge(i-1,i,1);
	}
	for(int i=1;i<=m;i++)
	{
		int x,y;
		scanf("%d%d",&x,&y);
		add_edge(x-1,y,1);
		add_edge(y,x-1,-1);
	}
	deq.push_front(0);
	memset(dis,0x3f,sizeof(dis));
	dis[0]=0;vis[0]=1;add[0]=1;
	int st=clock();
	while(!deq.empty())
	{
		int u=deq.front();
		deq.pop_front();
		vis[u]=0;
		for(int i=head[u];i!=-1;i=edge[i].next)
		{
			int v=edge[i].v,w=edge[i].w;
			if(dis[v]>dis[u]+w)
			{
				dis[v]=dis[u]+w;
				if(!vis[v])
				{
					vis[v]=1;
					if(++add[v]>n+1)
					{
						cout<<-1;
						return 0;
					}
					if(clock()-st>=0.7*CLOCKS_PER_SEC)
	                {
	                    cout<<-1;
	                    return 0;
	                }
					if(!deq.empty()&&dis[v]<dis[deq.front()]) deq.push_front(v);
					else deq.push_back(v);
				}
				
			}
		}
	}
	if(dis[n]==dis[n+1]) cout<<-1;
	else cout<<dis[n];
	return 0;
}

  • 22
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值