首页 技术 正文
技术 2022年11月6日
0 收藏 790 点赞 1,015 浏览 3392 个字

Triple

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

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

 InputThe 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. OutputFor each test case, you should output the size of set TOP(C). Sample Input2
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 OutputCase #1: 5
Case #2: 12 Source2015ACM/ICPC亚洲区沈阳站-重现赛(感谢东北大学) 

  • 集合凸点
  • 难点在于能否快速判定比当前三维数据(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 ;
}
下一篇: float和double
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,088
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,564
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,413
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,186
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,822
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,905