poj1364 King --- 差分约束

这是我见过最扯淡的题面之一。

题读了差不多一半我都觉得我这题肯定读不懂了,到最后终于看到重点了靠!

就是个差分约束大水题!毫无新意!

扯些什么皇后想生孩子!生了男孩是个弱智!父王很担心!这些有的没的有意思吗!!

题目就是给一个序列,告诉你 a b gt/lt c 表示从a起的b+1个数之和大于/小于c

就根据这个列不等式,要把> 或 <关系换成>= <= 就减一就可以了

列出不等式:

S[a-1]-S[a+b]<=-c-1

S[a+b]-S[a-1]<=c-1

需要注意的是,不是每次添加附加结点0都是正确的,要保证添加的点是不会使用到的,比如n+1

#include <iostream>
#include <cstring>
#include <string>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <map>
#define inf 0x3f3f3f3f
#define eps 1e-6
#define ll __int64
using namespace std;

struct node
{
    int v,w,next;
}e[10010];
int n,m,h,head[110],d[110],inq[110],outq[110];

void init()
{
    memset(head,-1,sizeof head);
    h=0;
}

void addedge(int a,int b,int c)
{
    e[h].v=b;
    e[h].w=c;
    e[h].next=head[a];
    head[a]=h++;
}

int spfa(int st)
{
    memset(d,0x3f,sizeof d);
    memset(inq,0,sizeof inq);
    memset(outq,0,sizeof outq);
 //   d[st]=0;inq[st]=1;
    queue<int> q;
    q.push(st);
    for(int i=1;i<=n;i++)
    {
        inq[i]=1;
        q.push(i);
    }
    while(!q.empty())
    {
        int x=q.front();
        q.pop();
        inq[x]=0;
        outq[x]++;
        if(outq[x]>n+1) return 0;//存在负环//是在与源点连通的图上有负环
        for(int i=head[x];i!=-1;i=e[i].next)
        {
            if(d[e[i].v]>d[x]+e[i].w)
            {
                d[e[i].v]=d[x]+e[i].w;
                if(!inq[e[i].v])
                {
                    inq[e[i].v]=1;
                    q.push(e[i].v);
                }
            }
        }
    }
    return 1;
}

int main()
{
    int a,b,c;
    char s[10];
    while(scanf("%d",&n)&&n)
    {
        init();
        scanf("%d",&m);
        while(m--)
        {
            scanf("%d%d%s%d",&a,&b,s,&c);
            if(s[0]=='g')
                addedge(b+a,a-1,-c-1);
            else
                addedge(a-1,b+a,c-1);
        }

      //  for(int i=0;i<=n;i++)
      //      addedge(0,i,0);
        int ans=spfa(0);
        if(ans)
            printf("lamentable kingdom\n");
        else printf("successful conspiracy\n");
    }
    return 0;
}

poj1364 King --- 差分约束

时间: 2024-10-02 07:30:26

poj1364 King --- 差分约束的相关文章

POJ 1364 King --差分约束第一题

题意:求给定的一组不等式是否有解,不等式要么是:SUM(Xi) (a<=i<=b) > k (1) 要么是 SUM(Xi) (a<=i<=b) < k (2) 分析:典型差分约束题,变换,令Ti = SUM(Xj) (0<=j<=i).  则表达式(1)可以看做T(a+b)-T(a-1) > k,也就是T(a-1)-T(a+b) < -k,又因为全是整数,所以T(a-1)-T(a+b) <= -k-1.  同理,(2)看做T(a+b)-T(

POJ 1364 King 差分约束 找负环

嘛,虽然是一道水题+模板题,不过还是学到了很多东西的,记录一下. 首先题目给出的不等式是小于,但是差分约束系统只能处理小于等于的情况,所以要转化成小于等于的进行处理.对于整数处理方法非常简单= = 然后是找负环的情况,其实不需要考虑图连不连通,只要一开始就把所有的点的d置成0,然后都push进队列里面就好了. PS:这种方法同样可以用在处理多源点最短路问题上. #include <cstdio> #include <cstring> #include <cmath> #

poj 1364 King(差分约束)(中等)

King Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 11028   Accepted: 4040 Description Once, in one kingdom, there was a queen and that queen was expecting a baby. The queen prayed: ``If my child was a son and if only he was a sound kin

UVALive 5532 King(差分约束,spfa)

题意:假设一个序列S有n个元素,现在有一堆约束,限制在某些连续子序列之和上,分别有符号>和<.问序列S是否存在?(看题意都看了半小时了!) 注意所给的形式是(a,b,c,d),表示:区间之和:sum[a,a+b]<d或者sum[a,a+b]>d.而c是两个字符构成,判断前1个字符足矣. 思路: 首先考虑要用点来表示什么,可以看到所给的是区间,也就是首尾的位置,可令sum(a)表示序列a[1...a]的和,那么表达式大概为sum(a+b)-sum(a-1)<k,由于小于号的存在

hdu 差分约束题集

[HDU]1384 Intervals 基础差分约束★1529 Cashier Employment 神级差分约束★★★★ 1531 King 差分约束★1534 Schedule Problem 差分约束输出一组解★3440 House Man 比较好的差分约束★★3592 World Exhibition 简单★3666 THE MATRIX PROBLEM 中等★★4274 Spy's Work [先处理出欧拉序列,然后就是差分约束了...] [POJ]1201 Intervals1275

差分约束小结

ZOJ 2770 Burn the Linked Camp /* ZOJ 2770 Burn the Linked Camp 差分约束 */ #include <iostream> #include <cstring> #include <cstdio> #include <queue> using namespace std; const int MAXN = 1009; struct Edge { int v, ne, c; } G[MAXN*MAXN]

POJ1364 King 【差分约束】

King Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 9977   Accepted: 3711 Description Once, in one kingdom, there was a queen and that queen was expecting a baby. The queen prayed: ``If my child was a son and if only he was a sound king

【差分约束】POJ1364/LG UVA515 king

这道题是个差分约束 King Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 14901 Accepted: 5248 Description Once, in one kingdom, there was a queen and that queen was expecting a baby. The queen prayed: ``If my child was a son and if only he was a sou

SGU 298 King Berl VI 差分约束 并使得min(dis[n]-dis[1])

题目链接:点击打开链接 题意: 给定n个点m条约束. 下面输出 u v x 表示: dis[u] - dis[v] >= x 然后建图就是 u->v 边权为-x 输出一个解满足 -10000<= dis[i] <= 10000. 若有多解输出一个 dis[n] - dis[1] 最小的解. 思路: 正图求个最大解,反图求个最小解. 对于一个点的 最大解<最小解,则差分约束无解. 题目要求dis[n]-dis[1]最小,那就令dis[n]为其最小解,dis[1]为其最大解,再s