HDU_5517_Triple
Triple
Time Limit: 12000/6000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1004 Accepted Submission(s): 356
C=A∗B={⟨a,c,d⟩∣⟨a,b⟩∈A, ⟨c,d,e⟩∈B and b=e}
For each ⟨a,b,c⟩∈C, its BETTER set is defined as
BETTERC(⟨a,b,c⟩)={⟨u,v,w⟩∈C∣⟨u,v,w⟩≠⟨a,b,c⟩, u≥a, v≥b, w≥c}
As a \textbf{multi-set} of triples, we define the TOP subset (as a multi-set as well) of C, denoted by TOP(C), as
TOP(C)={⟨a,b,c⟩∈C∣BETTERC(⟨a,b,c⟩)=∅}
You need to compute the size of TOP(C).
Each test case contains three lines. The first line contains two integers n (1≤n≤105) and m (1≤m≤105) corresponding to the size of A and B respectively.
The second line contains 2×n nonnegative integers
which describe the multi-set A, where 1≤ai,bi≤105.
The third line contains 3×m nonnegative integers
corresponding to the m triples of integers in B, where 1≤ci,di≤103 and 1≤ei≤105.
5 9
1 1 2 2 3 3 3 3 4 2
1 4 1 2 2 1 4 1 1 1 3 2 3 2 2 4 1 2 2 4 3 3 2 3 4 1 3
3 4
2 7 2 7 2 7
1 4 7 2 3 7 3 2 7 4 1 7
Case #2: 12
- 集合凸点
- 难点在于能否快速判定比当前三维数据(ai,ci,di)更大的点是否存在
- 首先能不能对原始数据做一次压缩呢?
- 看数据范围发现a,b,e的范围一致,c,d的范围一致,而c,d的范围只有1e3,是可以接受的
- 那么我们可以先对于有效点集P做一次排序,从大到小排,优先度分别是a,c,d,那么我们算是对第一维a的数据进行一次筛选,剩下的就是对于c和d这两维数据的判定
- 在一维数据中我们可以用线段树或树状数组的方式对于有限数据范围的数据进行RMQ操作,快速找出区间内max,min,sum。。。。
- 那么我们这里的算是一维RMQ的一个扩展
- 如果我们可以找出比当前结点大的点的个数就可以把题解决
- 那么这里就是一个二维数据的RMQ问题,询问区间内点点的数目
- 可以通过二维树状数组来实现
- 这里需要注意的一点是,普通二维树状数组在update的时候是从小到大维护自[0][0]点至[x][y]点整体矩阵的数据,因此update(x,y)应该分别对于大于x和y的坐标点进行更新,意思是update的(x,y)这个点的信息对于大于等于当前矩阵所维护的信息具有影响作用,但对小的点所维护的信息没有效用
- 这道题却和普通思想截然相反,update的点(x,y)对于比此点小的点具有效用,因此更新方向和原始方向刚好相反,对应的quary过程也是相反的
- 最后还要对点集去重,记录对应点出现次数
#include <iostream>
#include <string>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <climits>
#include <cmath>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
using namespace std;
typedef long long LL ;
typedef unsigned long long ULL ;
const int maxn = 1e5 + ;
const int inf = 0x3f3f3f3f ;
const int npos = - ;
const int mod = 1e9 + ;
const int mxx = + ;
const double eps = 1e- ;
const double PI = acos(-1.0) ; struct node{
int a, c, d, cnt;
bool operator < (const node &r)const{
if(a!=r.a) return a>r.a;
else if(c!=r.c) return c>r.c;
else return d>r.d;
}
bool operator == (const node &r)const{
return (a==r.a)&&(c==r.c)&&(d==r.d);
}
};
node e[maxn];
int T, n, m, u, v, w, cnt, tot;
int a[maxn], c[maxn], d[+][+];
int lowbit(int x){
return x&(-x);
}
void update(int x, int y, int z){
for(int i=x;i>;i-=lowbit(i))
for(int j=y;j>;j-=lowbit(j))
d[i][j]+=z;
}
int quary(int x, int y){
int res=;
for(int i=x;i<=1e3;i+=lowbit(i))
for(int j=y;j<=1e3;j+=lowbit(j))
res+=d[i][j];
return res;
}
int main(){
// freopen("in.txt","r",stdin);
// freopen("out.txt","w",stdout);
while(~scanf("%d",&T)){
for(int kase=;kase<=T;kase++){
cnt=;
tot=;
memset(a,,sizeof(a));
memset(c,,sizeof(c));
memset(d,,sizeof(d));
scanf("%d %d",&n,&m);
for(int i=;i<=n;i++){
scanf("%d %d",&u,&v);
if(a[v]<u)
a[v]=u, c[v]=;
else if(a[v]==u)
c[v]++;
}
for(int i=;i<=m;i++){
scanf("%d %d %d",&u,&v,&w);
if(a[w])
e[cnt++]=(node){a[w],u,v,c[w]};
}
sort(e,e+cnt);
for(int i=;i<cnt;i++)
if(e[tot]==e[i])
e[tot].cnt+=e[i].cnt;
else
e[++tot]=e[i];
LL ans=0LL;
for(int i=;i<=tot;i++){
if(!quary(e[i].c,e[i].d))
ans+=e[i].cnt;
update(e[i].c,e[i].d,);
}
printf("Case #%d: %lld\n",kase,ans);
}
}
return ;
}
HDU_5517_Triple的更多相关文章
随机推荐
- Spring部署报错:Could not open ServletContext resource [/db.properties]
在使用Spring MVC过程中,部署项目报错,报错信息如下: 八月 15, 2016 5:02:04 下午 org.apache.catalina.core.StandardContext list ...
- Java集合类相关面试题
1.Collection和Collections的差别 java.util.Collection 是一个集合接口,Collection接口在Java类库中有非常多详细的实现.比如List.Set ja ...
- 防止网页被别站用 iframe嵌套
将下面的代码加到您的页面 <head></head> 位置即可: <script language="javascript"> <!-- ...
- db2
关于3种导入导出操作进行简单的介绍:export:导出数据,支持IXF,DEL或WSFimport:导入数据,可以向表中导入数据,支持上面提到的4种文件类型. load:导入数据,功能和impo ...
- 【R】shiny界面
http://www.rstudio.com/shiny http://yanping.me/shiny-tutorial/#welcome
- 视觉SLAM漫淡
视觉SLAM漫谈 1. 前言 开始做SLAM(机器人同时定位与建图)研究已经近一年了.从一年级开始对这个方向产生兴趣,到现在为止,也算是对这个领域有了大致的了解.然而越了解,越觉得这个方向难度很 ...
- 单选按钮选中指定value值
$("input[name='BlogStatus'][value='" + rep.data.Status + "']").prop("checke ...
- Java集合----Collection工具类
Collections 工具类 Collections 是一个操作 Set.List 和 Map 等集合的工具类 Collections 中提供了大量方法对集合元素进行排序.查询和修改等操作,还提供了 ...
- Python 爬虫知识点 - 淘宝商品检索结果抓包分析
一.抓包基础 在淘宝上搜索“Python机器学习”之后,试图抓取书名.作者.图片.价格.地址.出版社.书店等信息,查看源码发现html-body中没有这些信息,分析脚本发现,数据存储在了g_page_ ...
- Zookeeper异常org.apache.zookeeper.KeeperException$ConnectionLossException
在虚拟机上安装了CenOS Linux系统,然后配置好了 zookeeper的集群环境,在本地写了一个Zookeeper测试程序,如下: package com.xbq.zookeeper; impo ...