本来想用线段树求,后来想用前乘积的求,需要求逆元,找了大神的求逆元的递推模板....
/*
http://blog.csdn.net/liuke19950717
*/
#include
#include
#include
using namespace std;
typedef long long ll;
const ll maxn=100005;
const ll mod=9973;
ll sum[maxn],inv[maxn],re[maxn];
char s[maxn];
int main()
{
inv[1]=1;
for(int i=2;i
直接求也行
/*
http://blog.csdn.net/liuke19950717
*/
#include
#include
#include
using namespace std;
typedef long long ll;
const ll maxn=100005;
const ll mod=9973;
ll sum[maxn];
char s[maxn];
void extgcd(ll a,ll b,ll &x,ll &y)
{
if(!b)
{
x=1;y=0;
return;
}
extgcd(b,a%b,y,x);
y-=(a/b)*x;
}
ll inv(ll a,ll n)
{
ll d,x,y;
extgcd(a,n,x,y);
return (x+n)%n;
}
int main()
{
int n;
//freopen("shuju.txt","r",stdin);
while(~scanf("%d",&n))
{
scanf("%s",s+1);
sum[0]=1;
for(int i=1;s[i]!=0;++i)
{
sum[i]=(sum[i-1]*(s[i]-28))%mod;
}
for(int i=0;i