Triple

Time Limit: 12000/6000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1004    Accepted Submission(s): 356

Problem Description
Given the finite multi-set A of n pairs of integers, an another finite multi-set B of m triples of integers, we define the product of A and B as a multi-set

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).

 
Input
The input contains several test cases. The first line of the input is a single integer t (1≤t≤10) which is the number of test case. Then t test cases follow.

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

a1,b1,a2,b2,⋯,an,bn

which describe the multi-set A, where 1≤ai,bi≤105.
The third line contains 3×m nonnegative integers

c1,d1,e1,c2,d2,e3,⋯,cm,dm,em

corresponding to the m triples of integers in B, where 1≤ci,di≤103 and 1≤ei≤105.

 
Output
For each test case, you should output the size of set TOP(C).
 
Sample Input
2
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
 
Sample Output
Case #1: 5
Case #2: 12
 
Source
 
  • 集合凸点
  • 难点在于能否快速判定比当前三维数据(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的更多相关文章

随机推荐

  1. 关于document.createDocumentFragment()(转)

    documentFragment 是一个无父对象的document对象. 他支持以下DOM2方法: appendChild, cloneNode, hasAttributes, hasChildNod ...

  2. linux -- ubuntu搭建nodejs环境

    需求:在web端做一个实时性功能比较强的模块, 客户端:用websocket 服务端:node.js node.js介绍:node.js天生就是一个高效的服务端语言,可以直接使用 javascript ...

  3. Unity3D-光照贴图技术

    概念 Lightmapping光照贴图技术是一种增强静态场景光照效果的技术,其优点是可以通过较少的性能消耗使静态场景看上去更加真实,丰富,更加具有立体感:缺点是不能用来实时地处理动态光照.当游戏场景包 ...

  4. hdu 5038 水题 可是题意坑

    http://acm.hdu.edu.cn/showproblem.php?pid=5038 就是求个众数  这个范围小 所以一个数组存是否存在的状态即可了 可是这句话真恶心  If not all ...

  5. laravel 使用验证码

    1)php.ini需要开两个扩展 extension=php_fileinfo.dllextension=php_gd2.dll 2)使用composer安装类包 composer require m ...

  6. Linux alias 命令

    alias命令用于查看或设置命令别名,但仅作用于该次登陆的会话,若要永久使用别名,可在 ~/.bashrc 中设定别名 [root@localhost ~]$ alias // 查看别名 [root@ ...

  7. UE4.16播放全景视频

    全景视频有两种:一种是常见的一帧画面里面包含一张全景图,另外一种是一帧画面里面包含了左眼和右眼两张全景图. 根据种类的不同,选择不同的材质分别对应MAT_Single_Image和MAT_Stereo ...

  8. ssh通过密钥进行连接

    sshd服务提供两种安全验证的方法: 基于口令的安全验证:经过验证帐号与密码即可登陆到远程主机. 基于密钥的安全验证:需要在本地生成"密钥对"后将公钥传送至服务端,进行公共密钥的比 ...

  9. exp/imp与expdp/impdp区别

    在平常备库和数据库迁移的时候,当遇到大的数据库的时候在用exp的时候往往是需要好几个小时,耗费大量时间.oracle10g以后可以用expdp来导出数据库花费的时间要远小于exp花费的时间,而且文件也 ...

  10. Vitamio与FFmpeg、LGPL、GPL的关系

    转自:http://sun.sanniang.me/2014/04/26/the-relationship-vitamio-with-ffmepg-lgp-gpl Vitamio 使用了 FFmpeg ...