Codeforces Round #475 (Div. 2) C. Alternating Sum

本文介绍了一种解决特定数学问题的算法,该问题要求计算一个周期性正负交替序列的等比数列求和,并对其结果进行取模运算。文章详细阐述了如何利用等比数列性质和逆元概念来高效求解此问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

C. 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)


思路:因为每一项的正负是循环的,循环节的大小是k,并且保证了(n+1)是k的倍数。并且抛开正负不看的话这是一个等比数列,加上正负的话,因为正负是循环有规律的原因,我们可以把式子等分,每一份为k项,当成一个新的等比数列,k项为新等比数列中的一项,等比数列求和公式即可解出答案。

但是要注意还有取模的操作,因为我们在计算的时候会涉及公比(b/a)^k,而当a>b的时候取模就会爆精度。在这里就要通过求a的逆元来化除为乘。如果对逆元不了解的话,可以移步https://blog.youkuaiyun.com/baymax520/article/details/79997102

#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<queue>
#include<iostream>
using namespace std;
const int mod=1e9+9;
long long quickpow(long long a,long long b)//快速幂
{
    long long ans=1;
    a%=mod;
    while(b)
    {
        if(b&1)
            ans=(ans*a)%mod;
        a=(a*a)%mod;
        b>>=1;
    }
    return ans;
}

long long inv(long long a)//费马小定理求逆元
{
    return quickpow(a,mod-2);
}
int main()
{
    char s[100005];
    int n,a,b,k,i;
    while(scanf("%d %d %d %d",&n,&a,&b,&k)!=EOF)
    {
        scanf("%s",s);
        long long sum=0;
        for(i=0;i<k;i++)//先求出前k项的和
        {
            if(s[i]=='+')
                sum=(sum+quickpow(a,n-i)*quickpow(b,i)%mod+mod)%mod;
            else
                sum=(sum-quickpow(a,n-i)*quickpow(b,i)%mod+mod)%mod;
        }
        long long t=quickpow(b,k)*inv(quickpow(a,k))%mod;//使用逆元求公比(b/a)^k
        if(t==1)//公比为1和不为1的时候计算不同
        {
            sum=(sum*(n+1)/k)%mod;
            printf("%I64d\n",(sum+mod)%mod);
        }

        else
        {
           sum=sum*(quickpow(t,(n+1)/k)-1)%mod*inv(t-1)%mod;
            printf("%I64d\n",sum);
        }
    }
    return 0;
}


电动汽车数据集:2025年3K+记录 真实电动汽车数据:特斯拉、宝马、日产车型,含2025年电池规格和销售数据 关于数据集 电动汽车数据集 这个合成数据集包含许多品牌和年份的电动汽车和插电式车型的记录,捕捉技术规格、性能、定价、制造来源、销售和安全相关属性。每一行代表由vehicle_ID标识的唯一车辆列表。 关键特性 覆盖范围:全球制造商和车型组合,包括纯电动汽车和插电式混合动力汽车。 范围:电池化学成分、容量、续航里程、充电标准和速度、价格、产地、自主水平、排放、安全等级、销售和保修。 时间跨度:模型跨度多年(包括传统和即将推出的)。 数据质量说明: 某些行可能缺少某些字段(空白)。 几个分类字段包含不同的、特定于供应商的值(例如,Charging_Type、Battery_Type)。 各列中的单位混合在一起;注意kWh、km、hr、USD、g/km和额定值。 列 列类型描述示例 Vehicle_ID整数每个车辆记录的唯一标识符。1 制造商分类汽车品牌或OEM。特斯拉 型号类别特定型号名称/变体。型号Y 与记录关联的年份整数模型。2024 电池_类型分类使用的电池化学/技术。磷酸铁锂 Battery_Capacity_kWh浮充电池标称容量,单位为千瓦时。75.0 Range_km整数表示充满电后的行驶里程(公里)。505 充电类型主要充电接口或功能。CCS、NACS、CHAdeMO、DCFC、V2G、V2H、V2L Charge_Time_hr浮动充电的大致时间(小时),上下文因充电方法而异。7.5 价格_USD浮动参考车辆价格(美元).85000.00 颜色类别主要外观颜色或饰面。午夜黑 制造国_制造类别车辆制造/组装的国家。美国 Autonomous_Level浮点自动化能力级别(例如0-5),可能包括子级别的小
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值