Codeforces Round #373 (Div. 2) E. Sasha and Array 矩阵快速幂+线段树

E. Sasha and Array
time limit per test
5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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

  1. 1 l r x — increase all integers on the segment from l to r by values x;
  2. 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 modulo109 + 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 tpiliri 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.

 题意:f(x)为斐波那契第x项,1是更新l-r的区间f(i+x),2是求区间和;

思路:线段树维护矩阵,将每个f(x)转化为2*2的矩阵,区间更新为乘法;

    需要一点小优化;

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pi (4*atan(1.0))
const int N=1e5+10,M=4e6+10,inf=1e9+10,mod=1e9+7;
struct is
{
    ll a[3][3];
    void setnum(ll aa,ll b,ll c,ll d)
    {
        a[1][1]=aa;
        a[1][2]=b;
        a[2][1]=c;
        a[2][2]=d;
    }
    void reset()
    {
        for(int i=1;i<=2;i++)
            for(int t=1;t<=2;t++)
            a[i][t]=0;
    }
};
is add(is a,is b)
{
    for(int i=1; i<=2; i++)
        for(int t=1; t<=2; t++)
            a.a[i][t]=(a.a[i][t]+b.a[i][t])%mod;
    return a;
}
struct tree
{
    is lazy;
    is a;
}tree[N<<2];
is gg;
is juzhenmul(is a,is b,ll mod)
{
    int i,t,j;
    is ans;
    ans.reset();
    for(i=1;i<=2;i++)
    for(t=1;t<=2;t++)
    for(j=1;j<=2;j++)
    {
        ans.a[i][t]+=(a.a[i][j]*b.a[j][t]);
        ans.a[i][t]%=mod;
    }
    return ans;
}
is quickpow(is a,ll x,ll mod)
{
    is ans;
    ans.setnum(1,0,0,1);
    while(x)
    {
        if(x&1)  ans=juzhenmul(ans,a,mod);
        a=juzhenmul(a,a,mod);
        x>>=1;
    }
    return ans;
}
is getans(is base,ll x,ll mod)
{
    return quickpow(base,x-1,mod);
}
void pushup(int pos)
{
    tree[pos].a=add(tree[pos<<1|1].a,tree[pos<<1].a);
}
void pushdown(int pos)
{
    if(tree[pos].lazy.a[1][1]!=1||tree[pos].lazy.a[1][2]!=0||tree[pos].lazy.a[2][1]!=0||tree[pos].lazy.a[2][2]!=1)
    {
        tree[pos<<1].lazy=juzhenmul(tree[pos<<1].lazy,tree[pos].lazy,mod);
        tree[pos<<1|1].lazy=juzhenmul(tree[pos<<1|1].lazy,tree[pos].lazy,mod);
        tree[pos<<1].a=juzhenmul(tree[pos].lazy,tree[pos<<1].a,mod);
        tree[pos<<1|1].a=juzhenmul(tree[pos].lazy,tree[pos<<1|1].a,mod);
        tree[pos].lazy.setnum(1,0,0,1);
    }
}
void buildtree(int l,int r,int pos)
{
    tree[pos].lazy.setnum(1,0,0,1);
    if(l==r)
    {
        ll x;
        scanf("%lld",&x);
        tree[pos].a=getans(gg,x,mod);
        return;
    }
    int mid=(l+r)>>1;
    buildtree(l,mid,pos<<1);
    buildtree(mid+1,r,pos<<1|1);
    pushup(pos);
}
void update(int L,int R,int l,int r,int pos,is c)
{
    if(L<=l&&r<=R)
    {
        tree[pos].lazy=juzhenmul(c,tree[pos].lazy,mod);
        tree[pos].a=juzhenmul(c,tree[pos].a,mod);
        return;
    }
    pushdown(pos);
    int mid=(l+r)>>1;
    if(L<=mid)
    update(L,R,l,mid,pos<<1,c);
    if(R>mid)
    update(L,R,mid+1,r,pos<<1|1,c);
    pushup(pos);
}
ll query(int L,int R,int l,int r,int pos)
{
    if(L<=l&&r<=R)
    return tree[pos].a.a[1][1];
    pushdown(pos);
    int mid=(l+r)>>1;
    ll ans=0;
    if(L<=mid)
    ans+=query(L,R,l,mid,pos<<1);
    if(R>mid)
    ans+=query(L,R,mid+1,r,pos<<1|1);
    return ans%mod;
}
int main()
{
    gg.setnum(1,1,1,0);
    int n,m;
    scanf("%d%d",&n,&m);
    buildtree(1,n,1);
    while(m--)
    {
        int flag,l,r;
        ll c;
        scanf("%d%d%d",&flag,&l,&r);
        if(flag==1)
        {
            scanf("%lld",&c);
            update(l,r,1,n,1,getans(gg,c+1,mod));
        }
        else
        printf("%lld\n",query(l,r,1,n,1));
    }
    return 0;
}

 

转载于:https://www.cnblogs.com/jhz033/p/5916238.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值