首页 > 代码库 > POJ 3067 Japan (树状数组)
POJ 3067 Japan (树状数组)
题目地址:POJ 3067
按x为第一关键字从小到大排序,再按y为第二关键字从小到大排序,然后用y来建立树状数组,每次找比y大的就是每次更新的交点数。
代码如下:
#include <iostream> #include <string.h> #include <math.h> #include <queue> #include <algorithm> #include <stdlib.h> #include <map> #include <set> #include <stdio.h> using namespace std; #define LL __int64 int a[11000], m; struct node { int x, y; }fei[1000000]; int cmp(node f1, node f2) { if(f1.x==f2.x) return f1.y<f2.y; return f1.x<f2.x; } int lowbit(int x) { return x&(-x); } void Update(int x) { while(x<=m){ a[x]++; x+=lowbit(x); } } int Sum(int x) { LL ans=0; while(x>0){ ans+=a[x]; x-=lowbit(x); } return ans; } int main() { int t, n, k, i, num=0; LL ans; scanf("%d",&t); while(t--){ num++; scanf("%d%d%d",&n,&m,&k); for(i=0;i<k;i++){ scanf("%d%d",&fei[i].x,&fei[i].y); } sort(fei,fei+k,cmp); ans=0; memset(a,0,sizeof(a)); for(i=0;i<k;i++){ ans+=i-Sum(fei[i].y); Update(fei[i].y); //printf("%I64d\n",ans); } printf("Test case %d: %I64d\n",num,ans); } return 0; }
POJ 3067 Japan (树状数组)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。