1078 Hashing (25 分)
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 H(key)=key%TSize 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 (≤104) and N (≤MSize) 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<iostream> #include<vector> #include<algorithm> #include<queue> #include<string> #include<map> #include<set> #include<stack> #include<string.h> #include<cstdio> #include <unordered_map> #include<cmath> using namespace std; int findPrim(int mSize) { for(int num=mSize;;num++) { bool flag=true; if(num==1) continue; for(int i=2;i<=sqrt(num);i++) { if(num%i==0) flag=false; } if(flag) { return num; } } } int main() { int mSize,n; scanf("%d%d",&mSize,&n); int len=findPrim(mSize>n?mSize:n); int a[len]; //cout<<len<<endl; fill(a,a+len,-1); vector<int>result; for(int i=0;i<n;i++) { int key; scanf("%d",&key); int step; for(step=0;step<len;step++) { int index=(key+step*step)%len; if(a[index]==-1) { a[index]=key; result.push_back(index); break; } } if(step==len) { result.push_back(-1); } } if(result[0]==-1) printf("-"); else printf("%d",result[0]); for(int i=1;i<result.size();i++) { if(result[i]==-1) printf(" -"); else printf(" %d",result[i]); } printf("\n"); return 0; }
posted on 2019-01-28 13:04 ZhangのBlog 阅读(144) 评论(0) 编辑 收藏 举报
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步