码迷,mamicode.com
首页 > 其他好文 > 详细

NOJ1184 迷失的邮票 散列表

时间:2015-06-10 10:28:18      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

题意

一共收集了N张邮票,现在丢了2张,剩下N-2张…..原先收集的邮票全部是成对收集的,所以找到哪两种邮票是成单的,输出它们。(确定丢失的邮票不是同一种)

思路

因为编号比较大,可以用hash表压缩成数组可以开的下的大小。压缩直接取模就好。如果冲突就往下一个找。

代码

#include <cstdio>
#include <cstring>
#define MOD 1000007
const int maxn = 1000010;
struct node {
    int cnt;
    int num;
};
node s[maxn];
int main()
{
    int n;
    scanf("%d",&n);
    for(int i = 0 ; i < n-2 ; i ++) {
        int a;
        scanf("%d",&a);//????
        int ahash = a%MOD;
        while(s[ahash].num != a && s[ahash].num != 0) {
            ahash ++;
            ahash = ahash%maxn;
        }
        s[ahash].num = a;
        s[ahash].cnt ++;
    }
    bool first = true;
    for(int i = 0 ; i < maxn ; i ++) {
        if(s[i].cnt%2) {
            if(first) {
                first = false;
                printf("%d",s[i].num);
            }else printf(" %d\n",s[i].num);
        }
    }
    return 0;
}

NOJ1184 迷失的邮票 散列表

标签:

原文地址:http://blog.csdn.net/area_52/article/details/46437869

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