(简单) POJ 3169 Layout,差分约束+SPFA。

  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.

  题意就是 Xi-Xj<c 然后求 Xn-X1 的最大值,差分约束问题。。。

  建图然后SPFA 就好。。。

代码如下:

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>

using namespace std;

const int MaxN=1010;
const int MaxM=30100;
const int INF=1000000009;

struct Edge
{
    int to,next,cost;
};

Edge E[MaxM];
int head[MaxN],Ecou;

bool vis[MaxN];
int couNode[MaxN];

void init(int N)
{
    Ecou=0;
    for(int i=1;i<=N;++i)
    {
        head[i]=-1;
        couNode[i]=0;
        vis[i]=0;
    }
}

void addEdge(int u,int v,int w)
{
    E[Ecou].to=v;
    E[Ecou].cost=w;
    E[Ecou].next=head[u];
    head[u]=Ecou++;
}

bool SPFA(int lowcost[],int N,int start)
{
    int t,v;
    queue <int> que;

    for(int i=1;i<=N;++i)
        lowcost[i]=INF;
    lowcost[start]=0;

    que.push(start);
    couNode[start]=1;
    vis[start]=1;

    while(!que.empty())
    {
        t=que.front();
        que.pop();

        vis[t]=0;

        for(int i=head[t];i!=-1;i=E[i].next)
        {
            v=E[i].to;

            if(lowcost[v]>lowcost[t]+E[i].cost)
            {
                lowcost[v]=lowcost[t]+E[i].cost;

                if(!vis[v])
                {
                    vis[v]=1;
                    couNode[v]+=1;
                    que.push(v);

                    if(couNode[v]>N)
                        return 0;
                }
            }
        }
    }

    return 1;
}

int ans[MaxN];

int main()
{
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);

    int N,ML,MD;
    int a,b,c;

    scanf("%d %d %d",&N,&ML,&MD);

    init(N);

    for(int i=1;i<=ML;++i)
    {
        scanf("%d %d %d",&a,&b,&c);

        addEdge(a,b,c);
    }

    for(int i=1;i<=MD;++i)
    {
        scanf("%d %d %d",&a,&b,&c);

        addEdge(b,a,-c);
    }

    for(int i=1;i<=N-1;++i)
        addEdge(i+1,i,0);

    if(!SPFA(ans,N,1))
        printf("-1\n");
    else if(ans[N]!=INF)
        printf("%d\n",ans[N]);
    else
        printf("-2\n");

    return 0;
}

时间: 2024-08-01 10:44:55

(简单) POJ 3169 Layout,差分约束+SPFA。的相关文章

POJ 3169 Layout (差分约束+SPFA)

Layout Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 6832   Accepted: 3292 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

poj 3169 Layout (差分约束+Bellman )

题目链接:http://poj.org/problem?id=3169 题意:输入N, ML, MD, N默示有N个牛按1-N排成一排,ML,默示有ML行,每行输入A, B, D默示A牛和B牛最远间隔为D, MD默示有MD行,每行输入A,B,D默示A牛和B来间隔为D,求满足所有前提的1-N的最大间隔. 比较简单的差分约束,这个周周赛的A题 #include <iostream> #include <cstdlib> #include <cstdio> #include

POJ 3169 Layout (差分约束)

题意:给定一些母牛,要求一个排列,有的母牛距离不能超过w,有的距离不能小于w,问你第一个和第n个最远距离是多少. 析:以前只是听说过个算法,从来没用过,差分约束. 对于第 i 个母牛和第 i+1 个,D[i] - D[i+1] <= 0,  D[j] -D[i ]<= k, D[i] - D[j] <= - k,那么这个题就可以用差分约束来求这个不等式组了. 1.对于差分不等式,a - b <= c ,建一条 b 到 a 的权值为 c 的边,求的是最短路,得到的是最大值(本题求的就

POJ 3169 Layout(差分约束啊)

题目链接:http://poj.org/problem?id=3169 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

POJ 3169 Layout(差分约束 线性差分约束)

题意: 有N头牛, 有以下关系: (1)A牛与B牛相距不能大于k (2)A牛与B牛相距不能小于k (3)第i+1头牛必须在第i头牛前面 给出若干对关系(1),(2) 求出第N头牛与第一头牛的最长可能距离, 若无解输出-1, 若无限长输出-2 分析: 3个关系对应的 <= 式子是: dis[b] - dis[a] <= d(1) dis[a] - dis[b] <= -d(2) dis[i] - dis[i+1] <= -1(2) 目标式:dis[N] - dis[1] <=

POJ 3169 Layout (差分约束入门)

线性约束 将所有不等式化成 \(d[a] - d[b] <= c\) 的形式,即有 \(a,b,c\)这条有向边,跑最短路即可 #include<cstring> #include<iostream> #include<algorithm> #include<queue> #include<vector> #define ll long long using namespace std; typedef pair<int,int>

POJ 3169 Layout (差分约束系统)

题目地址:POJ 3169 很简单的差分约束..公式很明显.当输入最大值的时候,是a-b<=c,最小值的时候是a-b>=c.然后根据这个式子用最短路求. 代码如下: #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <stdlib.h> #include <math.h> #include <ctyp

poj 3159 candies (差分约束 spfa+stack)

http://poj.org/problem?id=3159 题意:一个班有n个人 每人分到若干糖果 且u的糖果数不能比v少w个 求第1个人与第n个人最大数量差 照着模板spfa+queue果断tle了 之后照着题解说的把queue改成stack就过了 但是还不明白为什么会快 而且如果用数组直接模拟会比stl更快 #include<cstdio> #include<cstring> #include<iostream> #include<algorithm>

POJ 3169 Layout (图论-差分约束)

Layout Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 6574   Accepted: 3177 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