ACM 置换群专题(1)

关于置换群的题目下面列举几个:
POJ 2369 Permutations
题目还是比较简单的,就是一次求出每个循环节的长度,取它们的公倍数即可

//
//  main.cpp
//  poj 2369 Permutations
//
//  Created by ccccsober on 7/2/16.
//  Copyright © 2016 cccsober. All rights reserved.
//
#include <iostream>
#include <algorithm>
#include <cassert>
#include <string>
#include <sstream>
#include <math.h>
#include <set>
#include <bitset>
#include <vector>
#include <stack>
#include <map>
#include <queue>
#include <deque>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <ctime>
#include <cctype>
#include <complex>
using namespace std;
const int MAX1= (1e3) +2 ;
//const int MAX2=    ;
//const int Mod=     ;
const double plus=0.49999999;
const int INF=0x3f3f3f3f;
typedef long long LL;
typedef unsigned long long ULL;
#define M_PI 3.141592653589
int num[MAX1];
bool vis[MAX1];
int gcd(int a,int b){
    return b==0?a:gcd(b,a%b);
}
int lcm(int a,int b){
    return a/gcd(a,b)*b;
}
int main(int argc, const char * argv[]) {
    int n;
    while(scanf("%d",&n)!=EOF){
        for(int i=1;i<=n;i++)
            scanf("%d",&num[i]);
        int ans=1;
        for(int i=1;i<=n;i++){
            int t=i;
            int cnt=0;
            while(!vis[t]){
                vis[t]=1;
                t=num[t];
                cnt++;
            }
            if(cnt)
            ans=lcm(ans,cnt);
        }
        cout<<ans<<endl;
    }
    return 0;
}

POJ 1026 Cipher
题目总体还是比较简单,算出每个置换群的阶,依次算出每个 k%loopsize[i] 就能得到结果了,下面相对详细的讲解下:
题目中:
{1 2 3 4 5 6 7 8 9 10}
↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ⇒{1,4,7},{2,5},{3},{6,8},{9,10}
{4 5 3 7 2 8 1 6 10 9} ⇒loopsize[10]={3,2,1,3,2,2,3,2,2,2}

求loopsize的时候可以选择递归,这个很好的。
一开始我一直纠结算法复杂度,后来想想,一开始球loopsize的时候其实就是每个元素遍历一遍,这个不可能减少,而且也不算太高 ,在O(n)总体的复杂度也差不多。
给出AC参考代码:就是个递归着loopsize,之后处理下,代码实际不到60行...

//
//  main.cpp
//  poj 1026 Cipher
//
//  Created by ccccsober on 7/3/16.
//  Copyright © 2016 cccsober. All rights reserved.
//

#include <iostream>
#include <algorithm>
#include <cassert>
#include <string>
#include <sstream>
#include <math.h>
#include <set>
#include <bitset>
#include <vector>
#include <stack>
#include <map>
#include <queue>
#include <deque>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <ctime>
#include <cctype>
#include <complex>
using namespace std;
const int MAX1= 202  ;
//const int MAX2=    ;
//const int Mod=     ;
const double plus=0.49999999;
const int INF=0x3f3f3f3f;
typedef long long LL;
typedef unsigned long long ULL;
int num[MAX1];
int loopsize[MAX1];
bool vis[MAX1];
char result[MAX1];
char str[MAX1];
#define M_PI 3.141592653589
void recursion(int i,int& n){
    if(!vis[i]){
        vis[i]=1;
        n++;
        recursion(num[i],n);
    }
    loopsize[i]=n;
}
void _init(){
    memset(vis,0,sizeof(vis));
}
void _init2(){
    memset(result,0,sizeof(result));
    memset(str,0,sizeof(str));
}
int main(int argc, const char * argv[]) {
    freopen("/Users/sperc4/Desktop/input.txt", "r", stdin);
    int n;
    while(scanf("%d",&n)!=EOF){
        _init();
        if(!n) break;
        for(int i=1;i<=n;i++)
            scanf("%d",&num[i]);
        int k;
        for(int i=1;i<=n;i++){
            int t=0;
            if(!vis[i])
            recursion(i,t);
        }
        while(scanf("%d",&k),k){
            _init2();
            getchar();
            gets(str+1);
            for(int i=1;i<=n;i++){
                int t=k%loopsize[i];
                int pos=i;
                while(t--){
                    pos=num[pos];
                }
                result[pos]=str[i];
            }
            for(int i=1;i<=n;i++){
                if(result[i])
                    printf("%c",result[i]);
                else
                    printf(" ");
            }
            printf("\n");
        }
        printf("\n");
    }
    //      freopen("/Users/sperc4/Desktop/output.txt","w",stdout);
    fclose(stdin);
    //      fclose(stdout);
    return 0;
}

POJ 1721 CARDS
题目跟我预想的并不一样...
我开始觉得进行n次的置换那么的到应该等价下面分析:
n=1 有


那么如果是n次置换:

我觉得既然n是1~1000,那么这里应该会用到 快速幂取模,之后的到的数学式子等价于=

自己在笔算的时候可以得到这样的结果:

但说实话,直接怎样我实在是不知道如何进行了...

下面给出一个思路是别人的:
poj 1721
怎么说,我一开始很疑惑,为什么经过多番置换一定可以回到原来的数组...
比如下面这个例子:
1 2 3 4 5 6 7 8 9
6 3 5 9 7 2 1 8 4 后来会发现是下面的情况:
1 2 3 4 5 6 7 8 9 1 2 3 4 5 7 8 9 1 2 3 4 5 6 7 8 9
6 3 5 9 7 2 1 8 4 ⇒ 2 5 7 4 1 6 8 9 ⇒ 5 1 6 4 2 7 3 8 9

我测试过后面总是在后面那两个中不断循环,这个置换那个循环节就是2吗?我要怎么从第一个得出他的循环节就是2?
但仔细研究了下题目叙述的到结果是:
这句话保证最后一定可以回到原始的状态...
**
Alice and Bob play a game. Alice first writes down all the numbers from 1 to N in some random order: a1, a2, ..., aN. Then she arranges the cards so that the position ai holds the card numbered ai+1, for every 1 <= i <= N-1, while the position aN holds the card numbered a1. **
...
最后还是给出一个参考的代码:
我考虑很久要不要把多余内容删掉,后来想想,留出自己的思考过程何尝不是好的足迹

//
//  main.cpp
//  poj 1721 CARDS
//
//  Created by ccccsober on 7/6/16.
//  Copyright © 2016 cccsober. All rights reserved.
//
#include <iostream>
#include <algorithm>
#include <cassert>
#include <string>
#include <sstream>
#include <math.h>
#include <set>
#include <bitset>
#include <vector>
#include <stack>
#include <map>
#include <queue>
#include <deque>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <ctime>
#include <cctype>
#include <complex>
using namespace std;
const int MAX1=  (1e3) +3;
//const int MAX2=    ;
//const int Mod=     ;
const double plus=0.49999999;
const int INF=0x3f3f3f3f;
typedef long long LL;
typedef unsigned long long ULL;
#define M_PI 3.141592653589
int temp[MAX1];
int ans[MAX1];
int data[MAX1];
bool vis[MAX1];
//int gcd(int a,int b){
//    return b==0?a:gcd(b,a%b);
//}
//int lcm(int a,int b){
//    return a/gcd(a,b)*b;
//}
bool check_same(int*a ,int*b,int n){
    for(int i=1;i<=n;i++)
        if(a[i]!=b[i]) return false;
    return true;
}
int main(int argc, const char * argv[]) {
    freopen("/Users/sperc4/Desktop/input.txt", "r", stdin);
    int n,s;
    while(scanf("%d%d",&n,&s)!=EOF){
        memset(vis,0,sizeof(vis));
        for(int i=1;i<=n;i++){
            scanf("%d",&ans[i]);
            data[i]=ans[i];
        }
        int loopsize=1;
        for(int i=1;i<=n;i++)
            temp[i]=data[data[i]];
//            memcmp(data,temp,sizeof(temp));
        for(int i=1;i<=n;i++)
            data[i]=temp[i];
        while(!check_same(temp,ans,n)){
            loopsize++;
            for(int i=1;i<=n;i++)
                temp[i]=data[data[i]];
            for(int i=1;i<=n;i++)
                data[i]=temp[i];
        }
//        int t=0;
//        for(int i=1;i<=n;i++){
//            int k=i;
//            t=0;
//            while(!vis[k]){
//                t++;
//                vis[k]=1;
//                k=ans[ans[k]];
//            }
//            if(t)
//                loopsize=lcm(t,loopsize);
//        }
//        
        int plus=loopsize-s%loopsize;
//        cout<<"loopsize "<<loopsize<<endl;
        for(int i=0;i<plus;i++){
            for(int j=1;j<=n;j++){
                temp[j]=ans[ans[j]];
            }
            memcpy(ans,temp,sizeof(temp));
        }
        for(int i=1;i<=n;i++)
            cout<<ans[i]<<endl;
//        cout<<")))))))"<<endl;
    }
//    fclose(stdin);
    //      fclose(stdout);
    return 0;
}

POJ 3821 Leonardo's Notebook
这个题目也不错,非常好的利用了循环群分裂的一些性质。
比较好的论文:置换群快速幂运算+研究与探讨
里面只看前半部分就绰绰有余了。
因为gcd(2*k,2)=2说明凡是置换p*p得到的结果,其实都是由p分裂过来的。长度为奇数的置换,不用在意,因为gcd(2*k+1,2)=1,长度为2*k 的循环,这个就是关注点了。任何一个 2*k 必然是 4*k分裂出现。并且又一个和它对应。那么,长度为偶数的一定是成对出现

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 195,980评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 82,422评论 2 373
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 143,130评论 0 325
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,553评论 1 267
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,408评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,326评论 1 273
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,720评论 3 386
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,373评论 0 254
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,678评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,722评论 2 312
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,486评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,335评论 3 313
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,738评论 3 299
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,283评论 1 251
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,692评论 2 342
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,893评论 2 335

推荐阅读更多精彩内容

  • 曾经有一份美好的爱情放在我的面前我没有珍惜。等到失去后才后悔莫及。如果可以再对小李说。毛欣想说。这辈子无缘再牵手。...
    毛欣与小李阅读 2,515评论 0 13
  • 最近的朋友圈,大家都赞个不停。 是的,看我的朋友圈,分享的都是生活的美好:那幸福的家庭生活、那种种让人垂涎...
    玫子2016阅读 144评论 0 0
  • 下午有空,又把烘培的一摊子东西搬了出来!不死心的想再次烤个面包! 上次把面包烤的像个芝麻饼也是没谁了! 又是好一顿...
    乐园小cathy阅读 192评论 0 0
  • 昨天和我妹妹打电话关于工作聊了很多,她是做金融新媒体的,我是做艺术新媒体的,总的来说都是新媒体。 我们有一个通病,...
    我可能有病吧阅读 184评论 0 0