Codeforces 718C C. Sasha and Array

E. Sasha and Array

time limit per test5 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output

Sasha has an array of integers a1, a2, …, an. You have to perform m queries. There might be queries of two types:

1 l r x — increase all integers on the segment from l to r by values x;
2 l r — find , where f(x) is the x-th Fibonacci number. As this number may be large, you only have to find it modulo 109 + 7.
In this problem we define Fibonacci numbers as follows: f(1) = 1, f(2) = 1, f(x) = f(x - 1) + f(x - 2) for all x > 2.

Sasha is a very talented boy and he managed to perform all queries in five seconds. Will you be able to write the program that performs as well as Sasha?

Input
The first line of the input contains two integers n and m (1 ≤ n ≤ 100 000, 1 ≤ m ≤ 100 000) — the number of elements in the array and the number of queries respectively.

The next line contains n integers a1, a2, …, an (1 ≤ ai ≤ 109).

Then follow m lines with queries descriptions. Each of them contains integers tpi, li, ri and may be xi (1 ≤ tpi ≤ 2, 1 ≤ li ≤ ri ≤ n, 1 ≤ xi ≤ 109). Here tpi = 1 corresponds to the queries of the first type and tpi corresponds to the queries of the second type.

It’s guaranteed that the input will contains at least one query of the second type.

Output
For each query of the second type print the answer modulo 109 + 7.

Examples

input

5 4
1 1 2 1 1
2 1 5
1 2 4 2
2 2 4
2 1 5

output

5
7
9

Note

Initially, array a is equal to 1, 1, 2, 1, 1.

The answer for the first query of the second type is f(1) + f(1) + f(2) + f(1) + f(1) = 1 + 1 + 1 + 1 + 1 = 5.

After the query 1 2 4 2 array a is equal to 1, 3, 4, 3, 1.

The answer for the second query of the second type is f(3) + f(4) + f(3) = 2 + 3 + 2 = 7.

The answer for the third query of the second type is f(1) + f(3) + f(4) + f(3) + f(1) = 1 + 2 + 3 + 2 + 1 = 9.

#include<cstdio>
#define mo 1000000007
using namespace std;
int n,m;
int a[100005];
struct ma{
    int x[2][2];
    ma operator *(const ma p)const{
        ma ans;
        for(int i=0;i<2;i++)
            for(int j=0;j<2;j++)ans.x[i][j]=0;
        for(int i=0;i<2;i++)
            for(int j=0;j<2;j++)
                for(int k=0;k<2;k++)ans.x[i][k]=(ans.x[i][k]+1LL*x[i][j]*p.x[j][k])%mo;
        return ans;
    }
    ma operator +(const ma p)const{
        ma ans;
        for(int i=0;i<2;i++)
            for(int j=0;j<2;j++)ans.x[i][j]=0;
        for(int i=0;i<2;i++)
            for(int j=0;j<2;j++)ans.x[i][j]=(x[i][j]+p.x[i][j])%mo;
        return ans;
    }
    ma pow(int k){
        ma ans,now;
        for(int i=0;i<2;i++){
            for(int j=0;j<2;j++)ans.x[i][j]=0,now.x[i][j]=x[i][j];
            ans.x[i][i]=1;
        }
        for(;k;k>>=1){
            if(k&1)ans=ans*now;
            now=now*now;
        }
        return ans;
    }
    bool operator ==(const ma k)const{
        for(int i=0;i<2;i++)
            for(int j=0;j<2;j++)if(k.x[i][j]!=x[i][j])return false;
        return true;
    }
}f,st;
struct tree{
    ma m,a;
    void pushup(tree l,tree r){m=l.m+r.m;}
    void add(int k){m=m*f.pow(k);a=a*f.pow(k);}
    void add(ma k){m=m*k;a=a*k;}
}t[400005];
#define lson index<<1
#define rson index<<1|1
#define mid ((l+r)>>1)
void pushdown(int index){
    if(!(t[index].a==st)){
        t[lson].add(t[index].a);
        t[rson].add(t[index].a);
        t[index].a=st;
    }
}
void build(int l,int r,int index){
    t[index].a=st;
    if(l==r){t[index].m=f.pow(a[l]);return;}
    build(l,mid,lson);
    build(mid+1,r,rson);
    t[index].pushup(t[lson],t[rson]);
}
void add(int L,int R,int l,int r,int index,ma x){
    if((L<=l)&&(R>=r)){t[index].add(x);return;}
    pushdown(index);
    if(L<=mid)add(L,R,l,mid,lson,x);
    if(R>mid)add(L,R,mid+1,r,rson,x);
    t[index].pushup(t[lson],t[rson]);   
}
inline ma query(int L,int R,int l,int r,int index){
    if((L<=l)&&(R>=r))return t[index].m;
    pushdown(index);
    if(R<=mid)return query(L,R,l,mid,lson);
    if(L>mid)return query(L,R,mid+1,r,rson);
    ma ans=query(L,R,l,mid,lson)+query(L,R,mid+1,r,rson);
    return ans;
}
int main(){
    scanf("%d%d",&n,&m);
    f.x[1][0]=1;f.x[0][1]=1;f.x[1][1]=1;
    st.x[1][1]=1;st.x[0][0]=1;
    for(int i=1;i<=n;i++)scanf("%d",&a[i]);
    build(1,n,1);
    while(m--){
        int flag,l,r,x;
        scanf("%d",&flag);
        if(flag==1){
            scanf("%d%d%d",&l,&r,&x);
            add(l,r,1,n,1,f.pow(x));
        }else{
            scanf("%d%d",&l,&r);
            ma tmp=query(l,r,1,n,1);
            printf("%d\n",tmp.x[1][0]);
        }
    }
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
根据提供的引用内容,Codeforces Round 511 (Div. 1)是一个比赛的名称。然而,引用内容中没有提供与这个比赛相关的具体信息或问题。因此,我无法回答关于Codeforces Round 511 (Div. 1)的问题。如果您有关于这个比赛的具体问题,请提供更多的信息,我将尽力回答。 #### 引用[.reference_title] - *1* [Codeforces Round 860 (Div. 2)题解](https://blog.csdn.net/qq_60653991/article/details/129802687)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [Codeforces Round 867 (Div. 3)(A题到E题)](https://blog.csdn.net/wdgkd/article/details/130370975)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [Codeforces Round 872 (Div. 2)(前三道](https://blog.csdn.net/qq_68286180/article/details/130570952)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值