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 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代码。
有事你就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; }