poj 1201/ZOJ 1508 Intervals 差分约束

简介:

   典型差分约束,注意一点是可以不把与前后相连的固定边加到图中,直接spfa时判断即可,这样可以节省很多时间空间

   差分约束的关键就在于要写清楚不等式

/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <queue>
#define INF 1E9
using namespace std;
int W[50005],U[50005],next[50005];
int first[50005],Dis[50005];
int cnt;
void add(int v,int u,int w)
{
    next[cnt]=first[v];
    first[v]=cnt;
    U[cnt]=u;
    W[cnt]=w;
    cnt++;
}
queue<int> q;
bool inq[50005];
void insert(int u,int v,int w)
{
    if(Dis[u]>(w=Dis[v]+w))
    {
        Dis[u]=w;
        if(!inq[u])
        {
            inq[u]=1;
            q.push(u);
        }
    }
}
int spfa(int b,int e)
{
    memset(inq,0,sizeof(inq));
    memset(Dis,63,sizeof(Dis));
    Dis[b]=0;
    q.push(b);
    int i,v,u,t;
    while(!q.empty())
    {
        v=q.front();q.pop();
        inq[v]=0;
        for(i=first[v];~i;i=next[i]) //标准spfa
            insert(U[i],v,W[i]); 
        if(v-1>=e)insert(v-1,v,0); //后面的边
        if(v+1<=b)insert(v+1,v,1);//前面的边
    }
    return Dis[e];
}
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        cnt=0;
        memset(first,-1,sizeof(first));
        int i,v,u,w,b=INF,e=-1;
        for(i=0;i<n;i++)
        {
            scanf("%d%d%d",&v,&u,&w);
            v--;
            add(u,v,-w);
            b=min(b,v);
            e=max(e,u);
        }
        printf("%d\n",-spfa(e,b));
    }
}





目录
相关文章
F-POJ-3414 Pots
POJ-3414 Time Limit:1000 ms Memory Limit:65536 K Description You are given two po...
1002 0
poj 3664
http://poj.org/problem?id=3664 进行两轮选举,第一轮选前n进入第二轮,第二轮选最高   #include #include using namespace std; struct vote { int a,b; int c; ...
735 0
poj-3094-quicksum
http://poj.org/problem?id=3094 很简单 #include #include using namespace std; int main() { string a; int sum=0; while(getline(cin...
576 0
|
人工智能 BI
poj-3185-开关问题
描述   牛一行20他们喝的水碗。碗可以那么(面向正确的为清凉水)或颠倒的(一个位置而没有水)。他们希望所有20个水碗那么,因此用宽鼻子翻碗。   嘴太宽,他们不仅翻转一碗还碗的碗两侧(总共三个或三个——在两端的情况下碗——两碗)。
811 0
poj-1008-玛雅历
Description 上周末,M.A. Ya教授对古老的玛雅有了一个重大发现。从一个古老的节绳(玛雅人用于记事的工具)中,教授发现玛雅人使用了一个一年有365天的叫做Haab的历法。这个Haab历法拥有19个月,在开始的18个月,一个月有20天,月份的名字分别是pop, no, zip, zotz, tzec, xul, yoxkin, mol, chen, yax, zac, ceh, mac, kankin, muan, pax, koyab, cumhu。
883 0