题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4985
置换群:http://baike.baidu.com/view/1879054.htm?fr=aladdin
5 2 5 4 3 1 3 1 2 3
(1 2 5)(3 4) (1)(2)(3)
题意:
题意较难理解,其实就是一个置换群!
看代码就会理解题意!
代码如下:
/*#include <cstdio> #include <cstring> #include <algorithm> #include <vector> using namespace std; const int N = 100005; int n, a[N], vis[N]; int main() { while (~scanf("%d", &n)) { memset(vis, 0, sizeof(vis)); for (int i = 1; i <= n; i++) scanf("%d", &a[i]); for (int i = 1; i <= n; i++) { if (vis[i]) continue; int t = i; printf("(%d", t); vis[t] = 1; t = a[t]; while (vis[t] == 0) { vis[t] = 1; printf(" %d", t); t = a[t]; } printf(")"); } printf("\n"); } return 0; }*/ #include <cstdio> #include <cstring> int main() { int n; int a[100017], f[100017]; while(~scanf("%d",&n)) { memset(f,0,sizeof(f)); for(int i = 1; i <= n; i++) { scanf("%d",&a[i]); } for(int i = 1; i <= n; i++) { if(f[i]) continue; int t = i; f[t] = 1; printf("(%d",t); while(f[a[t]] == 0) { printf(" %d",a[t]); f[a[t]] = 1; t = a[t]; } printf(")"); } printf("\n"); } return 0; }
HDU 4985 Little Pony and Permutation(数学 置换群)
原文地址:http://blog.csdn.net/u012860063/article/details/39139939