As a gene engineer of a gene engineering project, Enigma encountered a puzzle about gene recombination. It is well known that a gene can be considered as a sequence, consisting of four nucleotides, which are simply denoted by four letters, A, C, G, and T.
Enigma has gotten a gene, such as "ATCC". And he wants to reorder this gene to make a new one, like "CTCA". He can use two types of operations: (1) exchange the first two letters, or (2) move the first letter to the end of the gene. For example, "ATCC" can be changed to "TCCA" by operation (2), and then "TCCA" can be changed to "CTCA" by operation (1). Your task is to make a program to help Enigma to find out the minimum number of operations to reorder the gene.
The input contains several test cases. The first line of a test case contains one integerN indicating the length of the gene (1<=N<=12). The second line contains a string indicating the initial gene. The third line contains another string which Enigma wants.
Note that the two strings have the same number for each kind of letter.
For each test case, output the minimum number of operations.
4 ATCC CTCA 4 ATCG GCTA 4 ATCG TAGC
2 4 6
Problem Setter : Jian He
题意:
一个初始串 一个目标串 问从初始到目标串最少需要几次操作
已知 有2中操作 1 最前面的2个字符互相交换 2 第一个字符放到最后一个字符后面去
共有 CGAT 四种字符 且字符串最长为12
思路: 我参考了标程才有了思路 哎 技术不够啊 要加油了
4^12=10^6级别 可以直接BFS+优先队列 找到最小次数 关键是如何解决超时以及爆内存 很好的题目
#include <stdio.h> #include <string.h> #include<queue> using namespace std; const int maxn = 12; const int maxk = 4; int n,st_num,ed_num; char f[369600]; int list [369600]; int head , tail , len , oldlen; int st[maxn], ed[maxn]; struct haha { int num; int step; friend bool operator<(haha a,haha b) { return a.step>b.step; } }temp,q; int tonum(int a[])//字符串压缩成一个数字 { int i; int re = 0; for(i=0;i<n;i++) { re = re * maxk + a[i]; } return re; } void tostr(int re, int a[])//把一个数字还原为字符串 { int i; for(i=n-1;i>=0;i--) { a[i] =re%maxk; re /= maxk; } } int sum0 , c0[maxk]; int sum , c[maxk]; int toHash(int a[]){//hash 用来标记是否出现过某个数字 用vis数组会爆内存 int i,j; int re = 0; sum = sum0; memcpy(c, c0, sizeof(c)); for(i=0;i<n;i++){ for(j=0;j<a[i];j++)if(c[j]){ re += sum * c[j] / (n-i); } sum = sum * c[a[i]] / (n-i); c[a[i]]--; } return re; } int toC(char c)//把输入时的字符串变成数字串 { if(c=='A')return 0; else if(c=='T') return 1; else if(c=='C') return 2; return 3; } int BFS()//BFS暴力搜索 { int mid,s1[13],s2[13]; int i; int num; priority_queue<struct haha>que; q.num=st_num; q.step=0; que.push(q); f[toHash(st)] = 1; while(!que.empty()) { temp=que.top(); que.pop(); if(ed_num==temp.num) return temp.step; tostr(temp.num,s1); mid=s1[0]; s1[0]=s1[1]; s1[1]=mid; q.step=temp.step+1; num=tonum(s1); if(f[toHash(s1)] != 1) { f[toHash(s1)]=1; q.num=num; que.push(q); } tostr(temp.num,s2); mid=s2[0]; for(i=0;i<n-1;i++) s2[i]=s2[i+1]; s2[n-1]=mid; q.step=temp.step+1; num=tonum(s2); if(f[toHash(s2)]!=1) { f[toHash(s2)]=1; q.num=num; que.push(q); } } return 0; } int main() { int i,j; char stmp[20]; while(scanf("%d",&n)==1 && n){ scanf("%s",stmp); for(i=0;i<n;i++){ st[i] = toC(stmp[i]); } scanf("%s",stmp); for(i=0;i<n;i++){ ed[i] = toC(stmp[i]); } memset(c0, 0, sizeof(c0)); sum0 = 1; for(i=0;i<n;i++)c0[st[i]]++,sum0*=(i+1); for(i=0;i<maxk;i++)for(j=0;j<c0[i];j++) sum0 /= (j+1); memset(f, 0, sizeof(char)*sum0); f[toHash(st)] = 1; st_num = tonum(st); ed_num = tonum(ed); if(st_num==ed_num){ printf("0\n"); continue; } printf("%d\n", BFS()); } return 0; }