简单数学训练—C

来源:互联网 发布:什么软件类似象牙社区 编辑:程序博客网 时间:2024/05/17 05:59

Description

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 %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).

Sample Input

Input
1
Output
3
Input
2
Output
10

Hint

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


规律是(1+2^n)*2^n / 2

快速幂裸题

#include <stdio.h>#include <math.h>long long fast_pow(int a, long long n){    if(n == 0)        return 1 % 1000000007;    if(n & 1)        return a * fast_pow(a, n-1) % 1000000007;    long long p = fast_pow(a, n / 2);    return p * p % 1000000007;}int main(){    long long n;    while(scanf("%lld", &n)!=EOF){    if( n ){        long long mods = 0;        mods = (fast_pow(2,2*n-1) + fast_pow(2,n-1))% 1000000007;//    mods = ((fast_pow(4,n) + fast_pow(2,n))/ 2) % 1000000007;        printf("%lld\n", mods);    }    else printf("1\n");    }}


0 0