voj 1049

https://vijos.org/p/1049
题目大意:顺次给出m个置换,反复使用这m个置换对初始序列进行操作,问k次置换后的序列。m<=10, k<2^31。
首先将这m个置换“合并”起来(算出这m个置换的乘积),然后接下来我们需要执行这个置换k/m次(取整,若有余数则剩下几步模拟即可), 置换k/m次就相当于在前面乘以k/m个这样的矩阵。

注意左乘和右乘的问题。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include<stdio.h>
#include<cstring>
#include<algorithm>
#include<iostream>
#define mem(x,y) memset(x,y,sizeof(x))
#define inf 0x3f3f3f3f
using namespace std;
#define siz 100
#define Mytype int
int N;
Mytype mod;
struct matrix
{
Mytype a[siz][siz];
matrix operator*(const matrix &y)const
{
matrix res;
mem(res.a,0);
for(int i=0;i<N;i++)
for(int j=0;j<N;j++)
if(a[i][j])
for(int k=0;k<N;k++)
res.a[i][k]+=a[i][j]*y.a[j][k];
return res;
}
matrix operator+(const matrix &y)const
{
matrix res;
for(int i=0;i<N;i++)
for(int j=0;j<N;j++)
res.a[i][j]=a[i][j]+y.a[i][j];
return res;
}
};
matrix qmod(matrix a,long long k)
{

matrix res;
mem(res.a,0);
for(int i=0;i<N;i++)
res.a[i][i]=1;
while(k)
{
if(k&1)
res=res*a;
a=a*a;
k>>=1;
}
return res;
}
int main()
{

int m,k;
scanf("%d%d%d",&N,&m,&k);
int t=k%m;
matrix a,b;
mem(a.a,0);
for(int i=0;i<N;i++)
a.a[i][i]=1;
b=a;
for(int i=1;i<=m;i++)
{
matrix c;
mem(c.a,0);
for(int j=0;j<N;j++)
{
int tmp;
scanf("%d",&tmp);
c.a[j][tmp-1]=1;
}
a=c*a;
if(i==t)b=a;
}
a=qmod(a,k/m);
a=b*a;
for(int i=0;i<N;i++)
for(int j=0;j<N;j++)
if(a.a[i][j])printf("%d ",j+1);
}

不用矩阵乘法也可以准确模拟该题,可以仿照快速幂的写法。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include<stdio.h>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<iostream>
#define mem(x,y) memset(x,y,sizeof(x))
#define inf 0x3f3f3f3f
using namespace std;
#define siz 3
#define MAXN 10000+5
#define cpy(x,y) memcpy(x,y,sizeof(x))
int n;
struct arr
{
int a[110];
void init()
{

for(int i=1;i<=n;i++)
a[i]=i;
}
arr operator*(const arr &b)const
{
arr t;
for(int i=1;i<=n;i++)
t.a[i]=a[b.a[i]];
return t;
}
};
arr qmod(arr a,int k)
{

arr res;
res.init();
while(k)
{
if(k&1)res=res*a;
a=a*a;
k>>=1;
}
return res;
}
int main()
{

int m,k;
scanf("%d%d%d",&n,&m,&k);
int x=k%m;
arr a,b;
a.init(),b.init();
for(int i=1;i<=m;i++)
{
arr tp;
for(int j=1;j<=n;j++)
scanf("%d",&tp.a[j]);
a=a*tp;
if(i==x)
b=a;
}
a=qmod(a,k/m);
a=a*b;
for(int i=1;i<=n;i++)
printf("%d ",a.a[i]);
}

EOF