zoukankan      html  css  js  c++  java
  • PAT 甲级 1078 Hashing

    https://pintia.cn/problem-sets/994805342720868352/problems/994805389634158592

    The task of this problem is simple: insert a sequence of distinct positive integers into a hash table, and output the positions of the input numbers. The hash function is defined to be ( where TSize is the maximum size of the hash table. Quadratic probing (with positive increments only) is used to solve the collisions.

    Note that the table size is better to be prime. If the maximum size given by the user is not prime, you must re-define the table size to be the smallest prime number which is larger than the size given by the user.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains two positive numbers: MSize (≤) and N (≤) which are the user-defined table size and the number of input numbers, respectively. Then N distinct positive integers are given in the next line. All the numbers in a line are separated by a space.

    Output Specification:

    For each test case, print the corresponding positions (index starts from 0) of the input numbers in one line. All the numbers in a line are separated by a space, and there must be no extra space at the end of the line. In case it is impossible to insert the number, print "-" instead.

    Sample Input:

    4 4
    10 6 4 15
    

    Sample Output:

    0 1 4 -

    代码:

    #include <bits/stdc++.h>
    using namespace std;
    
    const int maxn = 1e4 + 10;
    int N, M;
    int num[maxn], prime[maxn];
    int vis[maxn] = {0};
    
    bool isprime(int x) {
        if(x == 2) return true;
        if(x <= 1) return false;
    
        for(int i = 2; i * i <= x; i ++) {
            if(x % i == 0) return false;
        }
        return true;
    }
    
    void Hash(int x) {
        for(int i = 0; i < N; i ++) {
            int cnt = (x + i * i) % M;
            if(vis[cnt] == 0) {
                vis[cnt] = 1;
                printf("%d", cnt);
                return ;
            }
        }
        printf("-");
    }
    
    int main() {
        /*memset(prime, 1, sizeof(prime));
        for(int i = 2; i * i <= maxn; i ++) {
            for(int j = 2; j * i < maxn; j ++)
                prime[j * i] = 0;
        }*/
    
        scanf("%d%d", &M, &N);
        for(int i = 0; i < N; i ++)
            scanf("%d", &num[i]);
    
        while(!isprime(M)) M ++;
    
    //    mp.clear();
        for(int i = 0; i < N; i ++) {
            Hash(num[i]);
            printf("%s", i != N - 1 ? " " : "");
        }
        return 0;
    }
    

      二次方探查法   想当一个盲流子

     

  • 相关阅读:
    nginx反向代理前后端分离项目(后端多台)
    部署http访问SVN模式出现403问题
    The server quit without updating PID file
    guns开源项目数据库切换为oracle
    window环境下修改postgrep密码
    mybatis中怎样使用having?
    PostgreSQL时间段查询
    Java实现产生一个int数组,长度为100,并向其中随机插入1-100,并且不能重复。
    Jenkins构建maven项目跳过测试用例的命令
    supervisord
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/10373795.html
Copyright © 2011-2022 走看看