码迷,mamicode.com
首页 > 编程语言 > 详细

给40亿个不重复的unsigned int的数,没排序,然后再给一个数,如何快速间断这个数是否在那40亿个数中

时间:2015-09-08 21:42:01      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

 

40亿个数,如果用无符号的long long数组来存,那么使用数组里的每一个元素的每一位代表一个数,具体为:

a[0]  ---- 0~63

a[1]  ---- 64~127

a[2]  ---- 128~190

...

 

那么,40亿 bit/64 = 6.25*107 *8 byte = 500MB , 内存就满足了。

 

#include <iostream>
#include <bitset>
#include <cstring>
#include <vector>
#include <algorithm>
using namespace std;

#define maxn 62500000
unsigned long long a[maxn];

int main() {
    unsigned n, m, x;
    while (cin >> n >> m) {
        memset(a, 0, sizeof(a));
        for (int i=0; i<n; i++) {
            cin >> x;
            a[ x>>5 ] |= 1 << (x & 0x3F);
        }
        for (int i=0; i<m; i++) {
            cin >> x;
            if ( a[x>>5] & ( 1 << (x & 0x3F) ) ) {
                cout << "Yes" << endl;
            } else {
                cout << "No" << endl;
            }
        }
    }
}

  

给40亿个不重复的unsigned int的数,没排序,然后再给一个数,如何快速间断这个数是否在那40亿个数中

标签:

原文地址:http://www.cnblogs.com/marginalman/p/4792878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!