这道题 就是和hdu 2065 解法一样
g(x)=(1+x^2/2!+x^4/4!......)^2*(1+x+x^2/2!+x^3/3!.....)^2=([(e^(-x)+e^x)/2]^2)*e^(2*x);
需要自己算出其指数生成函数中 的系数为4^(n-1)+2^(n-1),然后用快速幂计算结果即可。
#include <iostream>
using namespace std;
typedef long long ll;
ll n;
const int mod=10007;
int quickmod(int a,ll b)
{
int ans=1;
while(b)
{
if(b&1)
ans=(ans*a)%mod;
b/=2;
a=a*a%mod;
}
return ans;
}
int main(int argc, const char * argv[])
{
int t;
cin>>t;
while(t--)
{
cin>>n;
cout<<(quickmod(4,n-1)+quickmod(2,n-1))%mod<<endl;
}
return 0;
}
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 6311 | Accepted: 3030 |
Description
Panda has received an assignment of painting a line of blocks. Since Panda is such an intelligent boy, he starts to think of a math problem of painting. Suppose there are N blocks in a line and each block can be paint red, blue, green or yellow. For some myterious reasons, Panda want both the number of red blocks and green blocks to be even numbers. Under such conditions, Panda wants to know the number of different ways to paint these blocks.
Input
The first line of the input contains an integer T(1≤T≤100), the number of test cases. Each of the next T lines contains an integer N(1≤N≤10^9) indicating the number of blocks.
Output
For each test cases, output the number of ways to paint the blocks in a single line. Since the answer may be quite large, you have to module it by 10007.
Sample Input
2 1 2
Sample Output
2 6