「NOIP模拟赛」hash函数
「问题描述」
明明觉得hash是个好算法,代码短、效率高。某天,他碰到了一个求正方形个数的问题,于是很淡定地枚举对角线,然后用hash判存在,妥妥的搞定,但是提交后却wa了几个点。仔细观察其hash函数为:h=x*y+x+y。为了让明明知道这个函数存在什么问题,对于给出一个h值,请你来告诉他有多少对(x,y)满足上述式子(max(x,y)≤h;h,x,y都为非负整数)?
「输入格式」
多组测试数据,第一行为测试点的个数T,接下来每一行一个整数h,意义如上。
「输出格式」
一共T行,每行一个整数,分别表示有多少组(x,y)满足要其对应的h值。
「数据范围」
对于30%数据,h≤20,000,T≤1000;
对于l00%数据,h≤100,000,000,T≤10000。
「输入样例」
3
1
3
4
「输出样例」
2
3
2
「样例解释」
(1,0),(0,1)
(0,3),(1,1),(3,0)
(4,0),(0,4)
题解
h=x+y+xy
h+1=(x+1)(y+1)
于是只要求出h+1的因数个数即可
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
#include<iostream> #include<cstdio> #include<cstdlib> #include<algorithm> #include<cstring> #include<cmath> #define inf 0x7fffffff #define ll long long using namespace std; inline ll read() { ll x=0,f=1;char ch=getchar(); while(ch>'9'||ch<'0'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int T,h,tot; int pri[1505],num[1505]; bool mark[10005]; void pre() { for(int i=2;i<=10005;i++) { if(!mark[i])pri[++tot]=i; else continue; for(int j=i;j<=10005;j+=i) mark[j]=1; } } int cal1(int x) { int ans=0; for(int i=1;i<=x;i++) if(!(x%i))ans++; return ans; } int cal2(int x) { int ans=1; for(int i=1;i<=tot;i++) { num[i]=0; while(!(x%pri[i])){x/=pri[i];num[i]++;} ans*=(num[i]+1); if(x<pri[i])break; } if(x!=1)ans*=2; return ans; } int main() { //freopen("hash.in","r",stdin); //freopen("hash.out","w",stdout); T=read();pre(); for(int i=1;i<=T;i++) { h=read(); if(h<=20000)printf("%d\n",cal1(h+1)); else printf("%d\n",cal2(h+1)); } return 0; } |
Subscribe