CodeForces 185A Plant(公式推导+快速幂)

17 篇文章 0 订阅

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 nyears.

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 %I64d specifier.

Output

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

Example
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.


题解:

观察规律可以看出在下一个图形变换的时候,对于现在每个朝上的三角形,下一次会变换成3个朝上的三角形和1个向下的三角形,对每个朝下的三角形下次会变成3个朝下的三角形和一个向上的三角形,这样就可以得出公式,假设每一次朝上三角形个数为a[i],朝下为b[i],可以列出a[i]=a[i-1]*3+b[i-1],和b[i]=3*b[i-1]+a[i-1],这两个公式化简可以得到a[i]的公式为2的n-1次方加上2的2*n-1次方,这个用快速幂就可以处理了

代码:

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<queue>
#include<stack>
#include<math.h>
#include<vector>
#include<map>
#include<set>
#include<stdlib.h>
#include<cmath>
#include<string>
#include<algorithm>
#include<iostream>
#include<stdio.h>
using namespace std;
#define ll long long
ll mod=1e9+7;
ll quick(ll x,ll y)
{
    ll ans=1;
    while(y!=0)
    {
        if(y%2==1)
            ans=(ans*x)%mod;
        x=(x*x)%mod;
        y/=2;
    }
    return ans;
}
int main()
{
    ll n;
    scanf("%lld",&n);
    if(n==0)
    {
        printf("1\n");
        return 0;
    }
    printf("%I64d\n", (quick(2,n-1)+quick(2,2*n-1))%mod);
    return 0;
}



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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值