CodeForces 185A. Plant(矩阵快速幂) 构造

Dwarfs have planted a very interesting plant, which is a triangle directed "upwards". This plant has an amusing feature. After one year a triangle plant directed "upwards" divides into four triangle plants: three of them will point "upwards" and one will point "downwards". After another year, each triangle plant divides into four triangle plants: three of them will be directed in the same direction as the parent plant, and one of them will be directed in the opposite direction. Then each year the process repeats. The figure below illustrates this process.

Help the dwarfs find out how many triangle plants that point "upwards" will be in n years.

Input

The first line contains a single integer n (0 ≤ n ≤ 1018) — the number of full years when the plant grew.

Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cincout streams or the %I64dspecifier.

Output

Print a single integer — the remainder of dividing the number of plants that will point "upwards" in n years by 1000000007 (109 + 7).

Sample test(s)
input
1
output
3
input
2
output
10
Note

The first test sample corresponds to the second triangle on the figure in the statement. The second test sample corresponds to the third one.


PS:

上三角个数:△-> 3*△ +1*▽

下三角个数:▽-> 1*△ +3*▽


矩阵快速幂;

等比矩阵为:

3 1

1 3

代码如下:

#include<stdio.h>
#include<string.h>
#include<math.h>
#define MOD 1000000007
#define ll long long
ll n;
struct matrix{
ll s[5][5]; 
}x,E;
matrix mul(matrix a,matrix b)
{   matrix ans;
    memset(ans.s,0,sizeof(ans.s));
    for(int i=0;i<2;i++)
     { for(int j=0;j<2;j++)
       {  if(a.s[i][j]!=0){
         for(int k=0;k<2;k++){
          ans.s[i][k]=(ans.s[i][k]+a.s[i][j]*b.s[j][k])%MOD;
}
  }
  }
}
return ans;
}
matrix quickpow(matrix A,ll m)
{   
while(m){
if(m&1)
 {
  x=mul(x,A);
     }
A=mul(A,A);
//m=(m>>1);
m/=2;
}
return x;
}
int main(){
   while(scanf("%I64d",&n)!=EOF)
   {
   if(n==0)
   {
printf("1\n");
continue;
   }
memset(x.s,0,sizeof(x.s));
   x.s[0][0]=1;
   x.s[1][0]=0;
   E.s[0][0]=3;
   E.s[0][1]=1;
   E.s[1][0]=1;
   E.s[1][1]=3;
E=quickpow(E,n);
   printf("%I64d\n",E.s[0][0]);
}
return 0;
}







  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Marcus-Bao

万水千山总是情,只给五角行不行

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值