关于算法题的万能板子和常用函数
作者:
弥海砂
,
2024-05-01 15:46:11
,
所有人可见
,
阅读 8
#include<bits/stdc++.h>
#define endl '\n'
#define INF=0x3f3f3f3f;
#define LLINF=0x3f3f3f3f3f3f3f3f;
using namespace std;
typedef long long LL;
typedef pair<int,int> PII;
typedef unsigned long long ULL;
const int M=2010;
const int P=131;
const int mod=1e9+7;
const int N=2e6+10;
int dx[4]={-1,0,1,0};
int dy[4]={0,1,0,-1};
ULL h[N],p[N];
ULL get(int l,int r)
{
return h[r]-h[l-1]*p[r-l+1];
}
int quick_mi(int a,int k,int p)
{
int res=1;
while(k)
{
if(k&1)
res=(LL)res*a%p;
k>>=1;
a=(LL)a*a%p;
}
return res;
}
int gcd(int a,int b)
{
return b?gcd(b,a%b):a;
}
void solve()
{
p[0]=1;
for(int i=1;i<=n;i++)
{
p[i]=p[i-1]*P;
h[i]=h[i-1]*P+str[i];
}
}
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int T; cin>>T;
while(T--)
solve();
return 0;
}