cf 366D D. Dima and Trap Graph (计算所有线段共同覆盖的某段区间)
http://codeforces.com/problemset/problem/366/D
题意:给出n个点,m条边,a,b,ll,rr分别代表点a,点b相连,点a和点b的区间范围(ll,rr),然后让你选择边相连接使得可以从点1到点n,并且所有被选择的边所共同覆盖的区间范围最大。
4 4
1 2 1 10
2 4 3 5
1 3 1 5
2 4 2 7
6
4个点,4条边,现在可以从1--2--4,存在两条路径,(1,10)--(3,5)或者(1,10)——(2,7),要选择这所共同覆盖的区间范围最大的路径,那么就是(1,10)——(2,7),所覆盖的区间范围为7-2+1
若是最大区间范围没有,输出-1;
思路:仔细思考过后,会发现,其实若存在最大共同覆盖区间(p),那么区间p的左极限必然是某个区间的左端点,区间p的右极限必然是某个区间的右端点,当然这“某个区间”,可能会是一个区间,也可能会是两个区间......
如此的话,我是对所有区间按ll排序,然后枚举rr区间,找ll,用并查集判断是否可以从点1到点n.....可是wa多次......至今没有弄明白,是哪个地方思路问题?
wa代码:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<vector>
#include<algorithm>
using namespace std; struct node
{
int v1,v2;
int x,y;
//int len;
} s[3*1005];
int father[3000];
int n,m;
int vist[1005],flg1,flg2,ans,xx,yy;
int cmp(const node a,const node b)
{
if(a.x<b.x)
return 1;
else
return 0;
}
int find(int x)
{
int root,i=x;
while(x!=father[x])
x=father[x];
root=x;
x=i;
while(x!=father[x])
{
i=father[x];
father[x]=root;
x=i;
}
return root;
} int main()
{
while(scanf("%d%d",&n,&m)>0)
{
for(int i=0; i<m; i++)
{
scanf("%d%d%d%d",&s[i].v1,&s[i].v2,&s[i].x,&s[i].y);
//s[i].len=s[i].y-s[i].x+1;
}
sort(s,s+m,cmp);
ans=0;
for(int i=0; i<m; i++)
{
for(int j=0; j<=n; j++)
father[j]=j;
for(int j=0;j<m;j++)
{
if(s[i].y<s[j].x)
break;
if(s[j].x>s[i].x)
continue;
if(s[i].x>s[j].y)
continue;
int s1=find(s[j].v1);
int s2=find(s[j].v2);
if(s1!=s2)
{
father[s1]=s2;
}
if(find(1)==find(n))
{
if(ans<s[j].y-s[i].x+1)
ans=s[j].y-s[i].x+1;
//printf("%d %d\n",s[i].x,s[i].y);
}
}
}
if(ans==0)
printf("Nice work, Dima!\n");
else
printf("%d\n",ans);
}
return 0;
}
然后,我依旧是对ll排序,但是这次是枚举rr来找ll,依旧是并查集判断是否联通1到n,额,ac了......有点不可思议,思考ing
ac代码:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<vector>
#include<algorithm>
using namespace std; struct node
{
int v1,v2;
int x,y;
//int len;
} s[3*1005];
int father[3000];
int n,m;
int vist[1005],flg1,flg2,ans,xx,yy;
int cmp(const node a,const node b)
{
if(a.x<b.x)
return 1;
else
return 0;
}
int find(int x)
{
int root,i=x;
while(x!=father[x])
x=father[x];
root=x;
x=i;
while(x!=father[x])
{
i=father[x];
father[x]=root;
x=i;
}
return root;
} int main()
{
while(scanf("%d%d",&n,&m)>0)
{
for(int i=0; i<m; i++)
{
scanf("%d%d%d%d",&s[i].v1,&s[i].v2,&s[i].x,&s[i].y);
//s[i].len=s[i].y-s[i].x+1;
}
sort(s,s+m,cmp);
ans=0;
for(int i=0; i<m; i++)
{
for(int j=0; j<=n; j++)
father[j]=j; for(int j=0;j<m;j++)
{
if(s[i].y<s[j].x)
break;
if(s[i].y>s[j].y)
continue;
//if(s[j].x>s[i].x)
//continue;
int s1=find(s[j].v1);
int s2=find(s[j].v2);
if(s1!=s2)
{
father[s1]=s2;
}
//printf("%d %d\n",s[j].v1,s[j].v2);
if(find(1)==find(n))
{ if(ans<s[i].y-s[j].x+1)
ans=s[i].y-s[j].x+1;
break;
}
}
}
if(ans==0)
printf("Nice work, Dima!\n");
else
printf("%d\n",ans);
}
return 0;
}
经过思考,我觉得wa代码是因为rr无序,也就是说,我只对ll排序了,枚举ll所找到的rr是无规律的,导致本来有些区间是应该会先连通点1到点n的,而因为rr无序,扰乱了.....所以wa,额,为了验证是不是这样的,便有了接下来的代码:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<vector>
#include<algorithm>
using namespace std; struct node
{
int v1,v2;
int x,y;
//int len;
} s[3*1005];
int father[3000];
int n,m;
int vist[1005],flg1,flg2,ans,xx,yy;
int cmp(const node a,const node b)
{
if(a.y>b.y)
return 1;
else
return 0;
}
int find(int x)
{
int root,i=x;
while(x!=father[x])
x=father[x];
root=x;
x=i;
while(x!=father[x])
{
i=father[x];
father[x]=root;
x=i;
}
return root;
} int main()
{
while(scanf("%d%d",&n,&m)>0)
{
for(int i=0; i<m; i++)
{
scanf("%d%d%d%d",&s[i].v1,&s[i].v2,&s[i].x,&s[i].y);
//s[i].len=s[i].y-s[i].x+1;
}
sort(s,s+m,cmp);
ans=0;
for(int i=0; i<m; i++)
{
for(int j=0; j<=n; j++)
father[j]=j; for(int j=0;j<m;j++)
{
if(s[i].x>s[j].y)
continue;
if(s[i].y<s[j].x)
continue;
//if(s[i].x)
if(s[j].x>s[i].x)
continue;
int s1=find(s[j].v1);
int s2=find(s[j].v2);
if(s1!=s2)
{
father[s1]=s2;
}
//printf("%d %d\n",s[j].v1,s[j].v2);
if(find(1)==find(n))
{ if(ans<s[j].y-s[i].x+1)
ans=s[j].y-s[i].x+1;
break;
}
}
}
if(ans==0)
printf("Nice work, Dima!\n");
else
printf("%d\n",ans);
}
return 0;
}
ac了......真是这样的哈......
具体的来说,我觉得解一道题目,不仅仅只是ac了就可以的........
这道题目,对于区间的排序问题,有讲究的。比如说只有四个点的情况,1 2 1 10与2 4 2 7;
表示点1和点2相连,区间值为1--10,点2与点4相连,区间值为2--7;
现在按区间的ll从小到大排序:
s[0].v1=1 s[0].v2=2 s[0].ll=1 s[0].rr=10;
s[1].v1=2 s[1].v2=4 s[1].ll=2 s[1].rr=7;
若枚举ll来确定rr,那么就会出现10-2+1的输出,其实为什么会这样?自己在纸上动手画画就可以明白;
但枚举rr来确定ll,却不会产生这样的情况......
同理,若是按照区间rr从大到小排序,然后枚举ll来确定rr,也会是正确的.......至于为什么一种要从小到大,而另一种要从大到小,找两个这样的区间,一个区间被另一个区间包含,然后动手画画,就可以明白........
cf 366D D. Dima and Trap Graph (计算所有线段共同覆盖的某段区间)的更多相关文章
- Codeforces 336D Dima and Trap Graph 并查集
Dima and Trap Graph 枚举区间的左端点, 然后那些左端点比枚举的左端点小的都按右端点排序然后并查集去check #include<bits/stdc++.h> #defi ...
- Codefroces 366 D Dima and Trap Graph (最短路)
Dima and Trap Graph 题意:Dima和Inna越来越喜欢对方,但是Dima的室友缺很没有热情出去玩,然后Dima就把他室友Seryozha骗进了陷阱里.现在Seryozha想要从陷阱 ...
- cf D. Dima and Trap Graph
http://codeforces.com/contest/366/problem/D 遍历下界,然后用二分求上界,然后用dfs去判断是否可以. #include <cstdio> #in ...
- 【BZOJ5334】数学计算(线段树)
[BZOJ5334]数学计算(线段树) 题面 BZOJ 洛谷 题解 简单的线段树模板题??? 咕咕咕. #include<iostream> #include<cstdio> ...
- CF#214 C. Dima and Salad 01背包变形
C. Dima and Salad 题意 有n种水果,第i个水果有一个美味度ai和能量值bi,现在要选择部分水果做沙拉,假如此时选择了m个水果,要保证\(\frac{\sum_{i=1}^ma_i}{ ...
- cf B. Little Dima and Equation
http://codeforces.com/contest/460/problem/B import java.util.*; import java.math.*; public class Mai ...
- cf 366C C. Dima and Salad(01背包)
http://codeforces.com/contest/366/problem/C 题意:给出n个水果的两种属性a属性和b属性,然后挑选苹果,选择的苹果必须要满足这样一个条件:,现在给出n,k,要 ...
- POJ 2125 Destroying the Graph 二分图最小点权覆盖
Destroying The Graph Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 8198 Accepted: 2 ...
- CF 316E3 Summer Homework(斐波那契矩阵+线段树)
题目链接:http://codeforces.com/problemset/problem/316/E3 题意:一个数列A三种操作:(1)1 x y将x位置的数字修改为y:(2)2 x y求[x,y] ...
随机推荐
- 利用Apache配置http expires值提高网站性能
HTTP头中有个expires参数,设置一个未来的时间,在这时间以前,浏览器会先从cache读取,如果没有再从服务器中读取.对于像图片,css,script等静态内容,只需发一次http reques ...
- ruby的sort方法的重新认识
ruby中的sort方法,这个方法可以加一个两个参数的block,这个block可以返回1 0 -1来表示这两个参数大于 等于 小于示例: str = ["192.160.175" ...
- android 点击通知栏返回应用 ,非启动一个新Activity
再使用如下的 Intent 设置: Intent intent = new Intent(this, MainActivity.class); intent.addFlags(Intent.FLAG_ ...
- hashCode和identityHashCode 的关系
1:首先看一下JDk API的观点 1-1:hashCode方法相关 1-2:identityHashCode()方法相关 2:此例的核心程序,对应的观点在注释中已经有所说明,请自己也动手实验一下看看 ...
- 对于不返回任何键列信息的 selectcommand 不支持 updatecommand 的动态 sql 生成
大家知道,DataSet保存的数据是位于服务器内存里面的原数据库的“副本”.所以用DataSet更新数据的过程就是先对“副本”进行更新,然后 在将“原本”更新,按照我的理解就是把“原本”覆盖掉.具体到 ...
- ORA-14404: partitioned table contains partitions in a different tablespace
SQL> drop tablespace nn_data including contents and datafiles; drop tablespace nn_data including ...
- @property与@synthesize的差别
上一篇文章我有讲到self.与_的差别,往往和这个问题相伴随的是我困惑的问题是"@property与@synthesize的差别" @property的使用方法 @interfac ...
- Sql 查询当天、本周、本月记录
--查询当天: select * from info where DateDiff(dd,datetime,getdate())=0 --查询24小时内的: select * from info wh ...
- Caused by: org.apache.jasper.JasperException: javax.el.ELException: java.lang.IllegalAccessException: Class javax.el.BeanELResolver can not access a m
在tomcat版本下的7.0.35没有问题. 在tomcat版本下的7.0.12出现问题.
- ubuntu14安装redis
1.下载源文件 wget http://download.redis.io/releases/redis-3.0.7.tar.gz 2.解压 tar vxzf redis-3.0.7.tar.gz 3 ...