poj 1364(差分约束+spfa判断负环)

来源:互联网 发布:供应商管理平台软件 编辑:程序博客网 时间:2024/04/30 03:08

King
Time Limit: 1000MS Memory Limit: 10000KTotal Submissions: 12458 Accepted: 4524

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.'' After nine months her child was born, and indeed, she gave birth to a nice son.
Unfortunately, as it used to happen in royal families, the son was a little retarded. After many years of study he was able just to add integer numbers and to compare whether the result is greater or less than a given integer number. In addition, the numbers had to be written in a sequence and he was able to sum just continuous subsequences of the sequence.

The old king was very unhappy of his son. But he was ready to make everything to enable his son to govern the kingdom after his death. With regards to his son's skills he decided that every problem the king had to decide about had to be presented in a form of a finite sequence of integer numbers and the decision about it would be done by stating an integer constraint (i.e. an upper or lower limit) for the sum of that sequence. In this way there was at least some hope that his son would be able to make some decisions.

After the old king died, the young king began to reign. But very soon, a lot of people became very unsatisfied with his decisions and decided to dethrone him. They tried to do it by proving that his decisions were wrong.

Therefore some conspirators presented to the young king a set of problems that he had to decide about. The set of problems was in the form of subsequences Si = {aSi, aSi+1, ..., aSi+ni} of a sequence S = {a1, a2, ..., an}. The king thought a minute and then decided, i.e. he set for the sum aSi + aSi+1 + ... + aSi+ni of each subsequence Si an integer constraint ki (i.e. aSi + aSi+1 + ... + aSi+ni < ki or aSi + aSi+1 + ... + aSi+ni > ki resp.) and declared these constraints as his decisions.

After a while he realized that some of his decisions were wrong. He could not revoke the declared constraints but trying to save himself he decided to fake the sequence that he was given. He ordered to his advisors to find such a sequence S that would satisfy the constraints he set. Help the advisors of the king and write a program that decides whether such a sequence exists or not.

Input

The input consists of blocks of lines. Each block except the last corresponds to one set of problems and king's decisions about them. In the first line of the block there are integers n, and m where 0 < n <= 100 is length of the sequence S and 0 < m <= 100 is the number of subsequences Si. Next m lines contain particular decisions coded in the form of quadruples si, ni, oi, ki, where oi represents operator > (coded as gt) or operator < (coded as lt) respectively. The symbols si, ni and ki have the meaning described above. The last block consists of just one line containing 0.

Output

The output contains the lines corresponding to the blocks in the input. A line contains text successful conspiracy when such a sequence does not exist. Otherwise it contains text lamentable kingdom. There is no line in the output corresponding to the last ``null'' block of the input.

Sample Input

4 21 2 gt 02 2 lt 21 21 0 gt 01 0 lt 00

Sample Output

lamentable kingdomsuccessful conspiracy

题意:

要求在一 段数组a1,a2....an中满足m个条件,使a[si]+a[si+1]+...a[si+p]小于或大于k。

思路:

求数组中一段和很容易就想到用前缀和来表示——ai+ai+1...ai+p=sum[p]-sum[i-1]。因此,题目也就转化成sum[p]-sum[q]<k或sum[p]-sum[q]>k。因为差分约束的条件是

b-a<=c因此sum[p]-sum[q]<k就可以转化成sum[p]-sum[q]<=k-1,sum[p]-sum[q]>k就转化为sum[q]-sum[p]<=-k-1.

这样就将本题转化成了一道差分约束的模板题,接下来只要套spfa模板判断是否存在负环就行了。


#include<stdio.h>#include<iostream>#include<algorithm>#include<cstdio>#include<string.h>#include<vector>#include<queue>#include<stack>#include<list>#include<set>#include<math.h>#include<map>using namespace std;#define N 105const int MAX=1e9+7;int n,m;int step[N],vis[N],mark[N];struct edge  {      int to,w,next;      edge(int x,int y,int z):to(x),w(y),next(z){}      edge(){}  };edge e[200000];int tot,head[N];void addedge(int from,int to,int w)  {      e[tot]=edge(to,w,head[from]);      head[from]=tot++;  }  bool spfa(int x)    {        for(int i=1;i<=n;i++)            step[i]=MAX;        step[x]=0;        vis[x]=1;mark[x]++;stack<int>q;        q.push(x);        while(!q.empty())        {            int t=q.top();            q.pop();            vis[t]=0;            for(int i=head[t];i!=-1;i=e[i].next)              {if(step[e[i].to]>step[t]+e[i].w)                    {step[e[i].to]=step[t]+e[i].w;                        if(!vis[e[i].to])                        {                            vis[e[i].to]=1;mark[e[i].to]++;if(mark[e[i].to]>n)return false;q.push(e[i].to);                        }                }            }        }return true;            }int main(){    freopen("in.txt","r",stdin);    freopen("out.txt","w",stdout);while(scanf("%d",&n)!=EOF&&n){        scanf("%d",&m);tot=0;        memset(head,-1,sizeof(head));          for(int i=0;i<m;i++)        {            int u,v,w;char c[3];            scanf("%d%d%s%d",&v,&u,c,&w);if(strcmp(c,"gt")==0){w=-w;w--;addedge(v+u,v-1,w);}else{w--;addedge(v-1,v+u,w);}        }int flag=0;        for(int i=0;i<=n;i++){memset(vis,0,sizeof(vis));memset(mark,0,sizeof(mark));if(!spfa(i)){flag=1;break;}}if(flag)printf("successful conspiracy\n");else printf("lamentable kingdom\n");}    return 0;}




0 0
原创粉丝点击