poj 3735 Training little cats

Training little cats

Time Limit: 2000MS

 

Memory Limit: 65536K

Total Submissions: 5815

 

Accepted: 1423

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

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

这题题意 如下,有n 只喵呜,三种关于花生的命令 ( 得花生,吃花生,交换花生 ) ,给出一套命令,重复 n 次,问最后每只喵呜得到多少花生。

 

M那么大,毫无疑问,矩阵……

先构造一个单位矩阵,然后……

poj 3735 Training little cats_第1张图片

然后算矩阵的m 次方,用快速幂, tle  恭喜……

还有一个对于稀疏矩阵的加速办法……一般矩阵乘法这么写的:

for (int i=0;i<N;i++)

for (int j=0;j<N;j++)

for (int k=0;k<N;k++)

a[i][j]+=b[i][k]*c[k][j];

改成

for (int i=0;i<N;i++)

for (int j=0;j<N;j++)

if (b[i][j])

for (int k=0;k<N;k++)

a[i][k]+=b[i][j]*c[j][k];

直接过了……另外,注意用 int64……

 

 

代码如下:

#include <stdio.h> __int64 a[105][105]; char str[5]; __int64 b[105]; __int64 c[105][105]; __int64 d[105]; int main() { __int64 i,j,n,m,t,x,y,k,T; while(1) { scanf("%I64d%I64d%I64d",&n,&m,&T); if (n==0 && m==0 && T==0) break; for (i=0;i<=n;i++) { for (j=0;j<=n;j++) { if (i==j) a[i][j]=1; else a[i][j]=0; } } for (i=0;i<T;i++) { scanf("%s",str); if (str[0]=='g') { scanf("%I64d",&x); a[x-1][n]++; } else if (str[0]=='e') { scanf("%I64d",&x); for (j=0;j<=n;j++) { a[x-1][j]=0; } } else if (str[0]=='s') { scanf("%I64d%I64d",&x,&y); for (j=0;j<=n;j++) { t=a[x-1][j]; a[x-1][j]=a[y-1][j]; a[y-1][j]=t; } } } for (i=0;i<n;i++) { b[i]=0; } b[n]=1; while(m!=0) { if (m%2==1) { for (i=0;i<=n;i++) { d[i]=0; for (j=0;j<=n;j++) { d[i]+=a[i][j]*b[j]; } } for (i=0;i<=n;i++) { b[i]=d[i]; } } for (i=0;i<=n;i++) { for (j=0;j<=n;j++) { c[i][j]=0; } } for (i=0;i<=n;i++) { for (j=0;j<=n;j++) { if (a[i][j]==0) continue; for (k=0;k<=n;k++) { c[i][k]+=a[i][j]*a[j][k]; } } } for (i=0;i<=n;i++) { for (j=0;j<=n;j++) { a[i][j]=c[i][j]; } } m=m/2; } for (i=0;i<n;i++) { printf("%I64d ",b[i]); } printf("/n"); } return 0; }

你可能感兴趣的:(poj 3735 Training little cats)