标签:矩阵快速幂
In chapter 4 of the game Trails in the Sky SC, Estelle Bright and her friends are crossing Mistwald to meet their final enemy, Lucciola.
Mistwald is a mysterious place. It consists of M * N scenes, named Scene (1, 1) to Scene (M, N). Estelle Bright and her friends are initially at Scene (1, 1), the entering scene. They should leave Mistwald from Scene (M, N), the exiting scene. Note that once they reach the exiting scene, they leave Mistwald and cannot come back. A scene in Mistwald has four exits, north, west, south, and east ones. These exits are controlled by Lucciola. They may not lead to adjacent scenes. However, an exit can and must lead to one scene in Mistwald.
Estelle Bright and her friends walk very fast. It only takes them 1 second to cross an exit, leaving a scene and entering a new scene. Other time such as staying and resting can be ignored. It is obvious that the quicker they leave Mistwald, the better.
Now you are competing with your roommate for who uses less time to leave Mistwald. Your roommate says that he only uses P seconds. It is known that he lies from time to time. Thus, you may want to code and find out whether it is a lie.
There are multiple test cases. The first line of input is an integer T ≈ 10 indicating the number of test cases.
Each test case begins with a line of two integers M and N (1 ≤ M, N ≤ 5), separated by a single space, indicating the size of Mistwald. In the next M lines, the ith line contains Npieces of scene information, separated by spaces, describing Scene (i, 1) to Scene (i, N). A scene description has the form "((x1,y1),(x2,y2),(x3,y3),(x4,y4))" (1 ≤ xk ≤ M; 1 ≤ yk ≤N; 1 ≤ k ≤ 4) indicating the locations of new scenes the four exits lead to. The following line contains an integer Q (1 ≤ Q ≤ 100). In the next Q lines, each line contains an integer P (0 ≤ P ≤ 100,000,000), which is the time your roommate tells you.
Test cases are separated by a blank line.
For each P, output one of the following strings in one line: "True" if it cannot be a lie; "Maybe" if it can be a lie; "False" if it must be a lie.
Print a blank line after each case.
2 3 2 ((3,1),(3,2),(1,2),(2,1)) ((3,1),(3,1),(3,1),(3,1)) ((2,1),(2,1),(2,1),(2,2)) ((3,2),(3,2),(3,2),(3,2)) ((3,1),(3,1),(3,1),(3,1)) ((3,2),(3,2),(3,2),(1,1)) 3 1 2 10 2 1 ((2,1),(2,1),(2,1),(2,1)) ((2,1),(2,1),(2,1),(2,1)) 2 1 2
Maybe False Maybe True False
#include<stdio.h> #include<string.h> #define Matr 50 #define ll int struct mat { ll a[Matr][Matr]; mat() { memset(a,0,sizeof(a)); } }; int Size; mat multi(mat m1,mat m2) { mat ans=mat(); for(int i=0;i<Size;i++) for(int j=0;j<Size;j++) if(m1.a[i][j])//?????? for(int k=0;k<Size;k++) { if((ans.a[i][k]+m1.a[i][j]*m2.a[j][k])) ans.a[i][k]=1; } return ans; } mat quickmulti(mat m,ll n) { mat ans=mat(); int i; for(i=0;i<Size;i++) ans.a[i][i]=1; while(n) { if(n&1) ans=multi(m,ans); m=multi(m,m); n>>=1; } return ans; } int main() { int i,j,k; int t,n,m; char op; mat chu; mat mp; scanf("%d",&t); while(t--){ scanf("%d %d",&n,&m); mp=mat(); Size=n*m; for(i=0;i<n;i++) { for(j=0;j<m;j++) { int x,y,s; s=i*m+j; getchar(); scanf("%c",&op); for(k=0;k<4;k++) { scanf("%c",&op); scanf("%d,%d%c%c",&x,&y,&op,&op); x--,y--; int a; a=x*m+y; if(s!=n*m-1) mp.a[s][a]=1; } } } int q,p; scanf("%d",&q); while(q--){ scanf("%d",&p); chu=mat(); chu.a[0][0]=1; chu=multi(chu,quickmulti(mp,p)); if(chu.a[0][n*m-1]==0) printf("False\n"); else { int flag=0; for(int i=0;i<n*m-1;i++) { if(chu.a[0][i]) flag=1; } if(flag) printf("Maybe\n"); else printf("True\n"); } } printf("\n"); } return 0; }
标签:矩阵快速幂
原文地址:http://blog.csdn.net/u013532224/article/details/45115797