JAVA基礎之泛型
阿新 • • 發佈:2022-04-10
視訊連結:
#include <iostream>
using namespace std;
typedef unsigned long long ULL;
const int N = 1000010, P = 131;
int n, m;
char s[N];
// p[i]=P^i, h[i]=s[1~i]的hash值
ULL p[N], h[N];
// 預處理 hash函式的字首和
void init(){
p[0] = 1, h[0] = 0;
for(int i = 1; i <= n; i ++){
p[i] = p[i-1]*P;
h[i] = h[i-1]*P+s[i];
}
}
// 計算s[l~r]的 hash值
ULL get(int l, int r){
return h[r]-h[l-1]*p[r-l+1];
}
// 判斷兩子串是否相同
bool substr(int l1,int r1,int l2,int r2){
return get(l1, r1) == get(l2, r2);
}
int main(){
cin >> n >> m;
scanf("%s", s + 1);
init();
while(m --){
int a, b, c, d;
cin >> a >> b >>c >> d;
if(substr(a,b,c,d)) puts("Yes");
else puts("No");
}
return 0;
}
P3370 【模板】字串雜湊
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 10010;
int n, m;
char s[N];
typedef unsigned long long ULL;
const int P = 131;
ULL h[N], ans[N];
// 計算串的雜湊值
ULL calc(char *s, int n){
h[0] = 0;
for(int i = 1; i <= n; i ++){
h[i] = h[i-1]*P+s[i];
}
return h[n];
}
int main(){
cin >> n;
for(int i=1; i<=n; i++){
scanf("%s", s + 1);
int m = strlen(s+1);
ans[i] = calc(s, m);
}
sort(ans+1, ans+n+1);
int cnt = 0;
for(int i=1; i<=n; i++)
if(ans[i]!=ans[i-1]) ++cnt;
printf("%d", cnt);
return 0;
}