codeforces 963a(等比数列求和 逆元 快速幂)

A. Alternating Sum
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given two integers aa and bb. Moreover, you are given a sequence s0,s1,,sns0,s1,…,sn. All values in ss are integers 11 or 1−1. It's known that sequence is kk-periodic and kk divides n+1n+1. In other words, for each kink≤i≤n it's satisfied that si=siksi=si−k.

Find out the non-negative remainder of division of ni=0sianibi∑i=0nsian−ibi by 109+9109+9.

Note that the modulo is unusual!

Input

The first line contains four integers n,a,bn,a,b and kk (1n109,1a,b109,1k105)(1≤n≤109,1≤a,b≤109,1≤k≤105).

The second line contains a sequence of length kk consisting of characters '+' and '-'.

If the ii-th character (0-indexed) is '+', then si=1si=1, otherwise si=1si=−1.

Note that only the first kk members of the sequence are given, the rest can be obtained using the periodicity property.

Output

Output a single integer — value of given expression modulo 109+9109+9.

Examples
input
Copy
2 2 3 3
+-+
output
Copy
7
input
Copy
4 1 5 1
-
output
Copy
999999228
Note

In the first example:

(ni=0sianibi)(∑i=0nsian−ibi) = 22302131+20322230−2131+2032 = 7

In the second example:

(ni=0sianibi)=14501351125211531054=781999999228(mod109+9)(∑i=0nsian−ibi)=−1450−1351−1252−1153−1054=−781≡999999228(mod109+9).


直接上代码:

#include<iostream>
#include<string.h>
#include<stdio.h>
#include<math.h>
using namespace std;
typedef long long ll;
const ll mod=1000000009;
ll quick_mod(ll a,ll b)
{
	ll ans=1;
	while(b)
	{
		if(b&1)ans=(ans*a)%mod;
		b>>=1;
		a=(a*a)%mod;
	}
	return ans;
}
int main()
{
	ll n,a,b,k;
	char s[100005];
	while(~scanf("%I64d%I64d%I64d%I64d",&n,&a,&b,&k))
	{
		ll j=(n+1)/k;
		ll y=quick_mod((quick_mod(a,mod-2)*b)%mod,k);
		scanf("%s",s);
		ll sum=0;
		for(int i=0;i<k;i++)
		{
			if(s[i]=='+')
				sum=(sum+(quick_mod(a,n-i)*quick_mod(b,i))%mod+mod)%mod;
			else 
				sum=(sum-(quick_mod(a,n-i)*quick_mod(b,i))%mod+mod)%mod;
		}
		if(y==1)
		{
			printf("%I64d\n",(sum*j)%mod);
		}
		else
		{
			ll z=(1-y+mod)%mod;
			ll z_ni=quick_mod(z,mod-2);
			ll y_j=quick_mod(y,j);
			ll yy=(1-y_j+mod)%mod;
			ll ans1=(yy*z_ni)%mod;
			
			printf("%I64d\n",(sum*ans1)%mod);
		}
		
	}
}







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值