Plant(快速幂+数学分析(没想到吧,数学无处不在))

简介: 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.

9e26f70ffa47e84a21896cccce77c49e.png


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 cin, cout 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).


Examples


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.


题意分析得到公式2^n(2^n+1)/2第n年的向下的个数,这个要自己推了,然后用快速幂通过n得到2^n。对了,提醒一下会爆int,用long long来存。



听懂了记得给个赞鼓励一下,码字不易,用爱发电。


上ac代码。

f58230e9f063709cf3167704f4efdf14.gif


有事你就q我;QQ2917366383


学习算法

#include<iostream>
const int mod=1e9+7;
#define  ll long long
using namespace std;
ll gg(ll a,ll b,ll c)
{
  int ans=1;
  while(b)
  {
    if(b&1)
    {
      ans=ans*a%c;
    }
    a=a*a%c;
    b>>=1;
  }
  return ans;
}
int main()
{
  ll t;
  cin>>t;
ll x=gg(2,t,mod);
cout<<x*(x+1)/2%mod<<endl; 
} 




相关文章
|
7月前
|
算法
Numbers on Whiteboard (codeforces1430)(数学分析)
Numbers on Whiteboard (codeforces1430)(数学分析)
21 0
|
7月前
|
机器学习/深度学习
P1403 [AHOI2005]约数研究(数学归纳,细心分析)
P1403 [AHOI2005]约数研究(数学归纳,细心分析)
34 0
|
10月前
十个漂亮的数学定理赏析(2)
十个漂亮的数学定理赏析(2)
94 0
|
10月前
十个漂亮的数学定理赏析(1)
十个漂亮的数学定理赏析(1)
41 0
|
11月前
|
机器学习/深度学习
数论整理之欧拉函数
数论整理之欧拉函数
|
算法 JavaScript
两种高阶排序+四道简单力扣题带你走近“分而治之”
两种高阶排序+四道简单力扣题带你走近“分而治之”
82 0
两种高阶排序+四道简单力扣题带你走近“分而治之”
|
存储 算法 调度
【CCCC】PAT : 团体程序设计天梯赛-练习集 L2 答案,题解,附代码
【CCCC】PAT : 团体程序设计天梯赛-练习集 L2 答案,题解,附代码
353 0
|
算法 安全 程序员
【Python 百练成钢】Python语言解决素数筛选问题的几种方式【朴素素数筛、埃氏筛、欧拉筛】
【Python 百练成钢】Python语言解决素数筛选问题的几种方式【朴素素数筛、埃氏筛、欧拉筛】
203 0
【Python 百练成钢】Python语言解决素数筛选问题的几种方式【朴素素数筛、埃氏筛、欧拉筛】
团体程序设计天梯赛-练习集 - L2-018 多项式A除以B(25 分)
团体程序设计天梯赛-练习集 - L2-018 多项式A除以B(25 分)
175 0