标签:des style blog http color os strong io
Time Limit: 2000MS | Memory Limit: 65536K | |
Total Submissions: 9807 | Accepted: 2344 |
Description
Facer‘s pet cat just gave birth to a brood of little cats. Having considered the health of those lovely cats, Facer decides to make the cats to do some exercises. Facer has well designed a set of moves for his cats. He is now asking you to supervise the
cats to do his exercises. Facer‘s great exercise for cats contains three different moves:
g i : Let the ith cat take a peanut.
e i : Let the ith cat eat all peanuts it have.
s i j : Let the ith cat and jth cat exchange their peanuts.
All the cats perform a sequence of these moves and must repeat it m times! Poor cats! Only Facer can come up with such embarrassing idea.
You have to determine the final number of peanuts each cat have, and directly give them the exact quantity in order to save them.
Input
The input file consists of multiple test cases, ending with three zeroes "0 0 0". For each test case, three integers
n, m and k are given firstly, where n is the number of cats and
k is the length of the move sequence. The following k lines describe the sequence.
(m≤1,000,000,000, n≤100, k≤100)
Output
For each test case, output n numbers in a single line, representing the numbers of peanuts the cats have.
Sample Input
3 1 6 g 1 g 2 g 2 s 1 2 g 3 e 2 0 0 0
Sample Output
2 0 1
Source
//1768K 235MS #include<stdio.h> #include<string.h> #include<algorithm> #define maxn 127 #define ll long long using namespace std; ll n,m,k; struct Matrax { ll m[maxn][maxn]; void clear(){memset(m,0,sizeof(m));} }a,per; void init()//建立矩阵 { a.clear(); per.clear(); char s[2]; ll x,b; for(int i=0;i<=n;i++) {a.m[i][i]=1;per.m[i][i]=1;} for(ll j=0;j<k;j++) { scanf("%s",s); if(s[0]=='g') { scanf("%I64d",&x); a.m[n][x-1]++; } if(s[0]=='e') { scanf("%I64d",&x); for(int i=0;i<=n;i++) a.m[i][x-1]=0; } if(s[0]=='s') { scanf("%I64d%I64d",&x,&b); for(ll i=0;i<=n;i++) swap(a.m[i][x-1],a.m[i][b-1]); } } } Matrax multi(Matrax a,Matrax b)//矩阵相乘 { Matrax c; c.clear(); for(int i=0;i<=n;i++) for(int k=0;k<=n;k++) if(a.m[i][k]) for(int j=0;j<=n;j++) c.m[i][j]+=a.m[i][k]*b.m[k][j]; return c; } Matrax power(ll k)//矩阵快速幂 { Matrax p,ans=per; p=a; while(k) { if(k&1){ans=multi(ans,p);k--;} else {k/=2;p=multi(p,p);} } return ans; } int main() { while(scanf("%I64d%I64d%I64d",&n,&m,&k),n|m|k) { init(); Matrax ans=power(m); for(int i=0;i<n-1;i++) printf("%I64d ",ans.m[n][i]); printf("%I64d\n",ans.m[n][n-1]); } return 0; }
POJ 3735 Training little cats 矩阵快速幂应用,布布扣,bubuko.com
POJ 3735 Training little cats 矩阵快速幂应用
标签:des style blog http color os strong io
原文地址:http://blog.csdn.net/crescent__moon/article/details/38271443