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; 
} 




相关文章
|
8天前
|
机器学习/深度学习 算法
[第三章]数学与简单dp
[第三章]数学与简单dp
37 1
|
8月前
|
算法
Numbers on Whiteboard (codeforces1430)(数学分析)
Numbers on Whiteboard (codeforces1430)(数学分析)
23 0
|
存储 算法 IDE
如何用FPGA解一道初中数学题
如何用FPGA解一道初中数学题
126 0
如何用FPGA解一道初中数学题
|
11月前
十个漂亮的数学定理赏析(2)
十个漂亮的数学定理赏析(2)
98 0
|
11月前
十个漂亮的数学定理赏析(1)
十个漂亮的数学定理赏析(1)
42 0
|
算法
《什么是数学》读书笔记(一):反证法、数学归纳法与唯一分解定理
《什么是数学》读书笔记(一):反证法、数学归纳法与唯一分解定理     期中告一段落。除了下下星期要交的现文史论文以外,最近似乎又清闲了不少,又有功夫在这里写点东西了。当然,我宝贵的时间也没有荒废在论文、作业和考试上。
1294 0
|
机器学习/深度学习
数论部分第二节:埃拉托斯特尼筛法
埃拉托斯特尼筛法 质数又称素数。指在一个大于1的自然数中,除了1和此整数自身外,没法被其他自然数整除的数。怎么判断n以内的哪些数是质数呢? 埃拉托斯特尼筛法 厄拉多塞是一位古希腊数学家,他在寻找素数时,采用了一种与众不同的方法:先将2-N的各数放入表中,然后在2的上面画一个圆圈,然后划去2的其他倍数;第一个既未画圈又没有被划去的数是3,将它画圈,再划去3的其他倍数;现在既未画圈又没有被划去的第一个数是5,将它画圈,并划去5的其他倍数……依次类推,一直到所有小于或等于N的各数都画了圈或划去为止。
1034 0
|
关系型数据库 RDS
[再寄小读者之数学篇](2015-06-08 一个有意思的定积分计算)
$$\beex \bea \int_0^\frac{\pi}{4}\ln (1+\tan x)\rd x &=\int_0^\frac{\pi}{4} \ln \frac{\cos x+\sin x}{\cos x}\rd x\\ &=\int_0^\frac{\pi}{4} \ln \sez{\s...
687 0

热门文章

最新文章