poj3734

maksyuki 发表于 oj 分类,标签:
0

Blocks

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

Source

PKU Campus 2009 (POJ Monthly Contest – 2009.05.17), Simon

 

题目类型:递推+矩阵快速幂取模

算法分析:设Ai为前i个块中红绿块数量都为偶数的方案数,Bi为前i个块中红绿块数量一奇一偶的方案数,Ci为前i个块中红绿块数量都为奇数的方案数,则可以推出Ai = 2 * Ai-1 + Bi, Bi = 2 * Ai-1 + 2 * Bi-1 + 2 * Ci-1和Ci = Bi-1 + 2 * Ci-1。最后转成矩阵计算即可