题解 POJ1635 【Subway tree systems】
题目链接:Link
Problem
Solution
这道题是一道比较裸的树哈希的题目,注意为了避免被卡,不同深度的节点的权值不同且是随机的。
Hash千万别用自然溢出!!!
Code
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
typedef unsigned long long ULL;
const int maxn=10005;
int T,n; char a[maxn],b[maxn],*p;
ULL h[maxn];
const ULL md=1287349021931ull;
ULL hsh(int d)
{
ULL s=h[d];
while(*p!=0&&*p++=='0') s=(s+hsh(d+1)*h[d])%md;
return s*s%md;
}
int main()
{
#ifdef local
freopen("pro.in","r",stdin);
// freopen("pro.out","w",stdout);
#endif
srand(131);
scanf("%d",&T);
for(int i=0;i<10000;i++) h[i]=((((ULL)rand()*(ULL)rand()+(ULL)rand())*(ULL)rand()+(ULL)rand())*(ULL)rand()+(ULL)rand())%md;
while(T-->0)
{
scanf("%s%s",a,b);
if(strlen(a)!=strlen(b)) { puts("different"); continue; }
p=a; ULL ha=hsh(1);
p=b; ULL hb=hsh(1);
// cout<<"ha="<<ha<<" hb="<<hb<<endl;
puts(ha==hb?"same":"different");
}
return 0;
}
本作品由happyZYM采用知识共享 署名-非商业性使用-相同方式共享 4.0 (CC BY-NC-SA 4.0) 国际许可协议(镜像(简单版)镜像(完整版))进行许可。
转载请注明出处:https://www.cnblogs.com/happyZYM/p/11379614.html (近乎)全文转载而非引用的请在文首添加出处链接。