zoukankan      html  css  js  c++  java
  • hdu 1531 king(差分约束)

    King

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 1645    Accepted Submission(s): 764


    Problem 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
     
    Source
     
    Recommend
    LL   |   We have carefully selected several similar problems for you:  1535 1596 1534 1317 1217 
     
     

     
     
     
     
    较水的差分约束,就是给的所有不等式建边,然后加个源点到所有点,跑一遍spfa看有没有正(负)环。有就国王输,反之则赢。
     
      1 #include<cstdio>
      2 #include<cstring>
      3 #include<iostream>
      4 #include<queue>
      5 #define clr(x) memset(x,0,sizeof(x))
      6 #define clr_1(x) memset(x,-1,sizeof(x))
      7 #define clrmax(x) memset(x,0x3f3f3f3f,sizeof(x))
      8 #define clrmin(x) memset(x,-0x3f3f3f3f,sizeof(x)) 
      9 using namespace std;
     10 struct node
     11 {
     12     int to,val,next;
     13 }edge[110];
     14 int head[110];
     15 int dis[110];
     16 int inf[110];
     17 int in[110];
     18 char s[100];
     19 int n,m,cnt,from,to,k,num;
     20 bool spfa(int s);
     21 void addedge(int from,int to,int val);
     22 int main()
     23 {
     24     while(scanf("%d",&n)!=EOF && n>0)
     25     {
     26         scanf("%d",&m);
     27         clr_1(head);
     28         clrmin(dis);
     29         clr(inf);
     30         clr(in);
     31         cnt=0;
     32         for(int i=1;i<=m;i++)
     33         {
     34             scanf("%d%d%s%d",&from,&to,s,&k);
     35             if(s[0]=='g')
     36             {
     37                 addedge(from-1,from+to,k+1);
     38                 inf[from-1]=1;
     39                 inf[from+to]=1;
     40             }
     41             else
     42             {
     43                 addedge(from+to,from-1,1-k);
     44                 inf[from-1]=1;
     45                 inf[from+to]=1;
     46             }
     47         }
     48         num=0;
     49         for(int i=0;i<=n;i++)
     50         {
     51             if(inf[i])
     52             {
     53                 addedge(n+1,i,0);
     54                 num++;
     55             }
     56         }
     57         num++;
     58         clr(inf);
     59         if(spfa(n+1))
     60             printf("lamentable kingdom
    ");
     61         else
     62             printf("successful conspiracy
    ");
     63     }
     64     return 0;
     65 } 
     66 void addedge(int from,int to,int val)
     67 {
     68     edge[++cnt].val=val;
     69     edge[cnt].to=to;
     70     edge[cnt].next=head[from];
     71     head[from]=cnt;
     72     return ;
     73 }
     74 bool spfa(int s)
     75 {
     76     queue<int> Q;
     77     dis[s]=0;
     78     inf[s]=in[s]=1;
     79     Q.push(s);
     80     int v,k;
     81     while(!Q.empty())
     82     {
     83         v=Q.front();
     84         Q.pop();
     85         inf[v]=0;
     86         for(int i=head[v];i!=-1;i=edge[i].next)
     87         {
     88             if(dis[v]+edge[i].val>dis[edge[i].to])
     89             {
     90                 dis[edge[i].to]=dis[v]+edge[i].val;
     91                 if(!inf[edge[i].to])
     92                 {
     93                     Q.push(edge[i].to);
     94                     inf[edge[i].to]=1;
     95                     if(++in[edge[i].to]>num)
     96                         return 0;
     97                 }
     98             }
     99         }
    100     }
    101     return 1;
    102 }
     
  • 相关阅读:
    WCF如何通过契约加编码方式调用
    编码为multipart/form-data自定义类型(包括文件)如何自动绑定到webapi的action的参数里
    MSMQ消息队列
    使用windows服务和MSMQ和进行日志管理(解决高并发问题)
    二叉树的三种遍历方式
    go语言的3个包——strconv、os.Args、flag
    公钥、私钥、签名、数字证书的关系
    go语言实现单链表
    Go语言学习笔记(10)——错误处理示例
    go语言实现链式栈
  • 原文地址:https://www.cnblogs.com/wujiechao/p/6582022.html
Copyright © 2011-2022 走看看