hdu 1364(差分约束)
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 12056 | Accepted: 4397 |
Description
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
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
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 题意(恶心的题意):
现在假设有一个这样的序列,S={a1,a2,a3,a4...ai...at}
其中ai=a*si,其实这句可以忽略不看
现在给出一个不等式,使得ai+a(i+1)+a(i+2)+...+a(i+n)<ki或者是ai+a(i+1)+a(i+2)+...+a(i+n)>ki
首先给出两个数分别代表S序列有多少个,有多少个不等式
不等式可以这样描述
给出四个参数第一个数i可以代表序列的第几项,然后给出n,这样前面两个数就可以描述为ai+a(i+1)+...a(i+n),即从i到n的连续和,再给出一个符号和一个ki
当符号为gt代表‘>’,符号为lt代表‘<'
那么样例可以表示
1 2 gt 0
a1+a2+a3>0
2 2 lt 2
a2+a3+a4<2
最后问你所有不等式是否都满足条件,若满足输出lamentable kingdom,不满足输出successful conspiracy,这里要注意了,不要搞反了 题解:
每一个序列之和都可以用前缀和表示出来,比如说第一个测试用例,sum[3]-sum[0]>0,sum[4]-sum[1]<2,又因为差分约束系统必须是>=或者<=,这题又全是整数,所以我们可以通过加减
一来得到标准差分约束式,这些点不一定是联通的,所以加个超级源点,然后判断负环.
#include <iostream>
#include <cstdio>
#include <string.h>
#include <queue>
#include <algorithm>
#include <math.h>
using namespace std;
typedef long long LL;
const int INF = ;
const int N = ;
struct Edge{
int v,w,next;
}edge[*N];
int head[N];
int tot ;
void init(){
memset(head,-,sizeof(head));
tot = ;
}
void addEdge(int u,int v,int w,int &k){
edge[k].v = v,edge[k].w = w,edge[k].next = head[u],head[u]=k++;
}
int n,m;
int low[N],time[N];
bool vis[N];
bool spfa(int s){
for(int i=;i<=;i++){
vis[i] = false;
low[i] = INF;
time[i] = ;
}
low[s] = ;
time[s]++;
queue<int> q;
q.push(s);
while(!q.empty()){
int u = q.front();
q.pop();
vis[u] = false;
for(int k=head[u];k!=-;k=edge[k].next){
int v = edge[k].v,w=edge[k].w;
if(low[v]>low[u]+w){
low[v] = low[u]+w;
if(!vis[v]){
vis[v] = true;
q.push(v);
if(time[v]++>n+) return false;
}
}
}
}
return true;
}
int main(){
while(scanf("%d",&n)!=EOF,n){
init();
scanf("%d",&m);
int super = ;
for(int i=;i<=m;i++){
int u,v,w;
char op[];
scanf("%d%d%s%d",&u,&v,op,&w);
v = u+v;
if(op[]=='g'){
w+=;
addEdge(v,u-,-w,tot);
}else{
w-=;
addEdge(u-,v,w,tot);
}
addEdge(super,u-,,tot);
addEdge(super,v,,tot);
}
if(spfa(super)){
printf("lamentable kingdom\n");
}else{
printf("successful conspiracy\n");
}
}
return ;
}
hdu 1364(差分约束)的更多相关文章
- hdu 1531(差分约束)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1531 差分约束的题之前也碰到过,刚好最近正在进行图论专题的训练,就拿来做一做. ①:对于差分不等式,a ...
- I - 动物狂想曲 HDU - 6252(差分约束)
I - 动物狂想曲 HDU - 6252 雷格西桑和路易桑是好朋友,在同一家公司工作.他们总是一起乘地铁去上班.他们的路线上有N个地铁站,编号从1到N.1站是他们的家,N站是公司. 有一天,雷格西桑起 ...
- hdu 4598 差分约束
思路:首先就是判断是否有奇环,若存在奇环,则输出No. 然后用差分约束找是否符合条件. 对于e(i,j)属于E,并且假设顶点v[i]为正数,那么v[i]-v[j]>=T--->v[j]-v ...
- hdu 3666(差分约束,手动栈解决超时问题)
THE MATRIX PROBLEM Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Other ...
- hdu 1534(差分约束+spfa求最长路)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1534 思路:设s[i]表示工作i的开始时间,v[i]表示需要工作的时间,则完成时间为s[i]+v[i] ...
- hdu 3440 差分约束
看完题目第一遍,感觉很简单.当写完程序跑测试用例的时候,发现第二个总是过不了,然后好好研究了一下测试用例,才知道原来不是程序有问题,而是我的建图方式错了.对于这些无序的点,如果高的在右边,不等式是di ...
- poj 1364 差分约束
思路:设dis[i]为从0点到第i点的序列总和.那么对于A B gt k 来讲意思是dis[B+A]-dis[A]>k; 对于A B lt k来讲就是dis[B+A]-dis[A]<k; ...
- hdu 1534(差分约束)
Schedule Problem Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
- hdu 3440(差分约束好题)
House Man Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total S ...
随机推荐
- hadoop 2.6.0 伪分布式部署安装遇到的问题
之前读到了一篇关于配置安装hadoop的博文(地址:http://www.powerxing.com/install-hadoop/)能正确安装和运行,但是在网页进行Jobtracker监控时,输入l ...
- C++中getline()函数简介
有时我们希望能在最终得到的字符中保留输入时的空白符,这时应该用getline()函数代替原来的>>运算符. 下面是使用getline读取一整行的示例代码: #include<iost ...
- C - 最长公共子序列
C - 最长公共子序列 Time Limit: 1000/1000MS (C++/Others) Memory Limit: 65536/65536KB (C++/Others) Problem De ...
- NIO Q&A(持续补充。。。。)
Q:NIO是非阻塞的.但调用的selector.select()方法会阻塞.这和NIO非阻塞岂不是矛盾了? A:非阻塞指的是 IO 事件本身不阻塞,但是获取 IO 事件的 select 方法是需要阻塞 ...
- BZOJ4567 [Scoi2016]背单词 【trie树 + 贪心】
题目链接 BZOJ4567 题解 题意真是鬼畜= = 意思就是说我们应先将一个串的所有后缀都插入之后再插入这个串,产生代价为其到上一个后缀的距离 我们翻转一下串,转化为前缀,就可以建\(trie\)树 ...
- 【BZOJ 3551】[ONTAK2010] Peaks加强版 Kruskal重构树+树上倍增+主席树
这题真刺激...... I.关于Kruskal重构树,我只能开门了,不过补充一下那玩意还是一棵满二叉树.(看一下内容之前请先进门坐一坐) II.原来只是用树上倍增求Lca,但其实树上倍增是一种方法,L ...
- 怎么替换jar包里面的文件?
很多时候,我们需要替换包含在jar包里面的文件,例如修改里面的配置文件. 由于jar包已经生成,在不想重新用eclipse导出的情况下,我们怎么修改jar包里面的文件呢? 其实说出来很简单,可以使用以 ...
- ViBe(Visual Background extractor)背景建模或前景检测
ViBe算法:ViBe - a powerful technique for background detection and subtraction in video sequences 算法官网: ...
- python 闭包与装饰器
1.闭包--返回子函数名 作用:使用子函数之外的父函数的变量 闭包就是你调用了一个函数a,这个函数a反悔了一个子函数名b,这个返回的函数b就叫做闭包 代码举例 def a(): test = 'aa' ...
- oracle 数据库图形化工具 sqldeveloper
1. 安装完成Oracle数据库,点击左下角[开始]菜单,在所有程序中打开[Oracle] 2. 在开始菜单,展开Oracle数据库,安装文件,然后打开[应用程序开发].可以看到[sqldevelop ...