Poj3420 quad tiling (matrix accelerated pressure DP)

Source: Internet
Author: User

Door: http://poj.org/problem? Id = 3420

 

Quad Tiling
Time limit:1000 ms   Memory limit:65536 K
     

Description

Tired of the Tri tiling game finally, Michael turns to a more challengeable game, quad tiling:

In how many ways can you tile a 4×N(1 ≤N≤ 109) rectangle with 2 × 1 dominoes? For the answer wocould be very big, output the answer moduloM(0 <M≤ 105 ).

Input

Input consists of several test cases followed by a line containing double 0. Each test case consists of two integers,NAndM, Respectively.

Output

For each test case, output the answer modulesM.

Sample Input

1 100003 100005 100000 0

Sample output

11195

Source

Poj monthly -- 2007.10.06, Dagger is the enlarged version of poj2411 .. I remember that jsoi2013 took a question 5 * n in the first round .. At that time, cxt showed off with me .. Now let's take a look at the simple N = 1e9 M = 1e5 .. Longlong is required, but I am lucky to have not added Longlong .. The practice is to open a 16*16 matrix .. However, the recursive formula can be directly introduced based on the matrix .. Good God orz... codes:
 1 #include<set> 2 #include<queue> 3 #include<cstdio> 4 #include<cstring> 5 #include<cstdlib> 6 #include<iostream> 7 #include<algorithm> 8 using namespace std; 9 #define For(i,n) for(int i=1;i<=n;i++)10 #define Rep(i,l,r) for(int i=l;i<=r;i++)11 12 struct Matrix{13     int A[17][17];14     Matrix(){15         memset(A,0,sizeof(A));16     }17 }Unit,Ans,TAns;18 19 int opt[20],n,Mod;20 21 Matrix operator * (Matrix A,Matrix B){22    Matrix C;23     Rep(i,0,15)24       Rep(j,0,15)25         Rep(k,0,15)26            C.A[i][j] = ( C.A[i][j] + (A.A[i][k] * B.A[k][j]) % Mod ) % Mod;27     return C;28 }29 30 bool Check(int s1,int s2){31     if((s1|s2)!=15) return false;32     for(int i=0;i<=15;){33         if( (s1&(1<<i)) != (s2&(1<<i)) ) i++;34         else{35             if(i==15) return false; else36             if(  ( s1 & (1<<(i+1)) ) != ( s2 & (1<<(i+1)) ) ) return false;37             i+=2;38         }39     }40     return true;41 }42 43 int main(){44     Rep(i,0,15){45         Rep(j,0,15)46             if(Check(i,j)) Ans.A[i][j] = TAns.A[i][j] = 1;47         if(Check(i,15)) 48             opt[i] = 1;49     }50     while(scanf("%d%d",&n,&Mod),Mod+n){        51         Rep(i,0,15){52             Rep(j,0,15){53                 Ans.A[i][j] = TAns.A[i][j];54                 Unit.A[i][j] = 0;55             }56             Unit.A[i][i] = 1;57         } 58         while(n){59             if(n&1) Unit = Unit * Ans;60             Ans = Ans * Ans;61             n = n >> 1;62         }63         int ans = 0;64         Rep(i,0,15) 65             ans = (ans % Mod + (opt[i] * Unit.A[0][i] % Mod) % Mod) % Mod;66         printf("%d\n",ans);67     }68     return 0;69 }

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.