【BZOJ1731/USACO 2005 】排队布局

                     1731: [Usaco2005 dec]Layout 排队布局

                                            Time Limit: 5 Sec  Memory Limit: 64 MB
                                                       Submit: 716  Solved: 408

Description

Like everyone else, cows like to stand close to their friends when queuing for feed. FJ has N (2 <= N <= 1,000) cows numbered 1..N standing along a straight line waiting for feed. The cows are standing in the same order as they are numbered, and since they can be rather pushy, it is possible that two or more cows can line up at exactly the same location (that is, if we think of each cow as being located at some coordinate on a number line, then it is possible for two or more cows to share the same coordinate). Some cows like each other and want to be within a certain distance of each other in line. Some really dislike each other and want to be separated by at least a certain distance. A list of ML (1 <= ML <= 10,000) constraints describes which cows like each other and the maximum distance by which they may be separated; a subsequent list of MD constraints (1 <= MD <= 10,000) tells which cows dislike each other and the minimum distance by which they must be separated. Your job is to compute, if possible, the maximum possible distance between cow 1 and cow N that satisfies the distance constraints. 

 

 当排队等候喂食时,奶牛喜欢和它们的朋友站得靠近些。FJ有N(2<=N<=1000)头奶牛,编号从1到N,沿一条直线站着等候喂食。奶牛排在队伍中的顺序和它们的编号是相同的。因为奶牛相当苗条,所以可能有两头或者更多奶牛站在同一位置上。即使说,如果我们想象奶牛是站在一条数轴上的话,允许有两头或更多奶牛拥有相同的横坐标。一些奶牛相互间存有好感,它们希望两者之间的距离不超过一个给定的数L。另一方面,一些奶牛相互间非常反感,它们希望两者间的距离不小于一个给定的数D。给出ML条关于两头奶牛间有好感的描述,再给出MD条关于两头奶牛间存有反感的描述。(1<=ML,MD<=10000,1<=L,D<=1000000)你的工作是:如果不存在满足要求的方案,输出-1;如果1号奶牛和N号奶牛间的距离可以任意大,输出-2;否则,计算出在满足所有要求的情况下,1号奶牛和N号奶牛间可能的最大距离。 

Input

* Line 1: Three space-separated integers: N, ML, and MD. * Lines 2..ML+1: Each line contains three space-separated positive integers: A, B, and D, with 1 <= A < B <= N. Cows A and B must be at most D (1 <= D <= 1,000,000) apart. * Lines ML+2..ML+MD+1: Each line contains three space-separated positive integers: A, B, and D, with 1 <= A < B <= N. Cows A and B must be at least D (1 <= D <= 1,000,000) apart. 

Output

* Line 1: A single integer. If no line-up is possible, output -1. If cows 1 and N can be arbitrarily far apart, output -2. Otherwise output the greatest possible distance between cows 1 and N. 

 

Sample Input

4 2 1
1 3 10
2 4 20
2 3 3

INPUT DETAILS:

There are 4 cows. Cows #1 and #3 must be no more than 10 units
apart, cows #2 and #4 must be no more than 20 units apart, and cows
#2 and #3 dislike each other and must be no fewer than 3 units apart.

 

Sample Output

27

四只牛分别在0,7,10,27.

 

解析: 

       差分约束系统。

 

代码:

#include <bits/stdc++.h>
using namespace std;

const int Max=10100;
int n,ml,md,s,inf;
int first[Max],cnt[Max],dis[Max],vis[Max];
struct shu{int to,next,len;};
shu edge[Max<<2];
queue<int>q;

inline int get_int()
{
	int x=0,f=1;
	char c;
	for(c=getchar();(!isdigit(c))&&(c!='-');c=getchar());
	if(c=='-') {f=-1;c=getchar();}
	for(;isdigit(c);c=getchar()) x=(x<<3)+(x<<1)+c-'0';
	return x*f;
}

inline int mn(int x,int y){return x > y ? y : x;}
inline int mx(int x,int y){return x > y ? x : y;}

inline void build(int x,int y,int z)
{
	edge[++s].next=first[x];
	first[x]=s;
	edge[s].to=y;
	edge[s].len=z;
}

inline int SPFA()
{
	memset(dis,0x3f,sizeof(dis));
	inf = dis[n];
	dis[0]=0,vis[0] = 1,cnt[0] = 0;
	q.push(0);
	while(!q.empty())
	{
	  int point = q.front();
	  q.pop(),vis[point] = 0;
	  for(int u=first[point];u;u=edge[u].next)
	  {
	 	int to=edge[u].to;
	 	if(dis[to] > dis[point] + edge[u].len)
	 	{
	 	  dis[to] = dis[point] + edge[u].len;
	 	  if(!vis[to])
	 	  {
	 	  	cnt[to]++;
	 	  	if(cnt[to] >= n) return 0;
	 	  	vis[to] = 1,q.push(to);
	 	  }
	 	}
	  }
	}
	return 1;
}

int main()
{
	n=get_int(),ml=get_int(),md=get_int();
	for(int i=1;i<=ml;i++)
	{
	  int x=get_int(),y=get_int(),z=get_int();
	  build(mn(x,y),mx(x,y),z);
	}
	for(int i=1;i<=md;i++)
	{
	  int x=get_int(),y=get_int(),z=get_int();
	  build(mx(x,y),mn(x,y),-z);
	}
	build(0,1,0);

	if(!SPFA()) {cout<<"-1\n";return 0;}
	else
	{
	  if(dis[n] == inf) cout<<"-2\n";
	  else cout<<dis[n] - dis[1]<<"\n";
	}

	return 0;
}

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值