我是靠谱客的博主 坦率身影,最近开发中收集的这篇文章主要介绍hdu(4325),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

离散化+树状数组

#include<iostream>
#include <stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
const int maxn = 100005;
int n,m;
int hash[maxn*2];
int c[maxn*2];
struct node{
    int num;
    int id;
   friend bool operator<(const node a,const node b){
       return a.num< b.num;
    }
}q[maxn*2];
int lowbit(int x){
    return x&(-x);
}
void update(int id,int x){
    for(inti = id;i > 0;i-= lowbit(i))
       c[i] +=x;
}
int getsum(int id){
    int ans = 0;
    for(inti = id;i < maxn*2;i += lowbit(i))
       ans += c[i];
    return ans;
}
int main(){
    int t,cas,i;
    scanf("%d",&t);
    for(cas = 1;cas <= t;cas++){
       scanf("%d%d",&n,&m);
       for(i =1;i <=2*n+m;i++){
          scanf("%d",&q[i].num);
          q[i].id = i;
       }
       sort(q+1,q+1+2*n+m);
       int k =1;
       hash[q[1].id]= k;
       for(i =2;i <=2*n+m;i++){
          if(q[i-1].num== q[i].num)
              hash[q[i].id] = k;
          else
              hash[q[i].id] = ++k;
       }
       //for(i = 1;i<= 2*n+m;i++)
        //  printf("%d ",hash[i]);
       memset(c, 0,sizeof(c));
       for(i =1;i <2*n;i+=2){
          update(hash[i]-1,-1);
          update(hash[i+1],1);
       }
       printf("Case#%d:n",cas);
       for(i =2*n+1;i<= 2*n+m;i++)
          printf("%dn",getsum(hash[i]));
    }
    return 0;
}


最后

以上就是坦率身影为你收集整理的hdu(4325)的全部内容,希望文章能够帮你解决hdu(4325)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(74)

评论列表共有 0 条评论

立即
投稿
返回
顶部