码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 1364-King

时间:2018-06-13 23:43:04      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:nts   could   help   tle   define   NPU   判断   any   seq   

 

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 2
1 2 gt 0
2 2 lt 2
1 2
1 0 gt 0
1 0 lt 0
0

Sample Output

lamentable kingdom
successful conspiracy

 

Solution:

  差分约束判断可行解。。。

  我们还是列出约束条件(由于只是判断可行性,所以直接当做求解最小值来做,当然求解最大值也是可以的):

    1、$sum[s_i+n_i]-sum[s_i-1]>k_i$,转换为$sum[s_i+n_i]-sum[s_i-1]\geq k_i-1$,所以建边$w[s_i-1,s_i+n_i]=k_i-1$

    2、$sum[s_i+n_i]-sum[s_i-1]<k_i$,转换为$sum[s_i-1]-sum[s_i+n_i]\geq -(k_i-1)$,所以建边$w[s_i+n_i,s_i-1]=-(k_i-1)$

  最后就求下最长路,判断有无环,输出就好了。

代码:

 1 #include<iostream>
 2 #include<queue>
 3 #include<cstdio>
 4 #include<cstring>
 5 #define il inline
 6 #define For(i,a,b) for(int (i)=(a);(i)<=(b);(i)++)
 7 using namespace std;
 8 const int N=1005,inf=23333333;
 9 int n,m,to[N],h[N],net[N],dis[N],w[N],cnt,tot[N];
10 bool vis[N];
11 queue<int>q;
12 
13 il void add(int u,int v,int c){to[++cnt]=v,net[cnt]=h[u],h[u]=cnt,w[cnt]=c;}
14 
15 int main(){
16     char s[5];
17     while(scanf("%d",&n),n){
18         scanf("%d",&m);
19         cnt=0;
20         memset(tot,0,sizeof(tot));
21         memset(h,0,sizeof(h));
22         int u,v,c;
23         while(m--){
24             scanf("%d%d%s%d",&u,&v,s,&c);
25             v=v+u;
26             if(s[0]==g)add(u-1,v,c+1);
27             else add(v,u-1,-(c-1));
28         }
29         For(i,0,n) dis[i]=-inf,add(n+1,i,0);
30         q.push(n+1);
31         c=0;
32         while(!q.empty()){
33             int u=q.front();q.pop();vis[u]=0;tot[u]++;
34             if(tot[u]>n+1){puts("successful conspiracy");c=1;break;}
35             for(int i=h[u];i;i=net[i])
36                 if(dis[to[i]]<dis[u]+w[i]){
37                     dis[to[i]]=dis[u]+w[i];
38                     if(!vis[to[i]])q.push(to[i]),vis[to[i]]=1;
39                 }
40         }
41         if(!c)puts("lamentable kingdom");
42     }
43     return 0;
44 }

 

POJ 1364-King

标签:nts   could   help   tle   define   NPU   判断   any   seq   

原文地址:https://www.cnblogs.com/five20/p/9177070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!