DNA Sorting (JSU-ZJJ)

悠悠 2022-04-05 10:18 227阅读 0赞

#

题目描述

One measure of “unsortedness” in a sequence is the number of pairs of entries that are out of order with respect to each other. For instance, in the letter sequence “DAABEC”, this measure is 5, since D is greater than four letters to its right and E is greater than one letter to its right. This measure is called the number of inversions in the sequence. The sequence “AACEDGG” has only one inversion (E and D)–it is nearly sorted–while the sequence “ZWQM” has 6 inversions (it is as unsorted as can be–exactly the reverse of sorted).

You are responsible for cataloguing a sequence of DNA strings (sequences containing only the four letters A, C, G, and T). However, you want to catalog them, not in alphabetical order, but rather in order of “sortedness”, from “most sorted” to “least sorted”. All the strings are of the same length.

输入

The first line contains two integers: a positive integer n (0 < n ≤ 50) giving the length of the strings; and a positive integer m (1 < m ≤ 100) giving the number of strings. These are followed by m lines, each containing a string of length n.

输出

Output the list of input strings, arranged from “most sorted” to “least sorted”. If two or more strings are equally sorted, list them in the same order they are in the input.

样例输入

10 6
AACATGAAGG
TTTTGGCCAA
TTTGGCCAAA
GATCAGATTT
CCCGGGGGGA
ATCGATGCAT

样例输出

CCCGGGGGGA
AACATGAAGG
GATCAGATTT
ATCGATGCAT
TTTTGGCCAA
TTTGGCCAAA

分析:

此题读懂题意后,发现这是一道简单的题目。不过一开始我却想到了去求逆序数的方法(运用分治的方法)。不过我突然可以不用分治, 因为此题的字符串长度不大,不会超时

  1. #include"stdio.h"
  2. #include"string.h"
  3. typedef struct node{
  4. char a[51];
  5. long long number;
  6. }node;
  7. int main()
  8. { char c;
  9. int M,N;
  10. node a[101],transfer;
  11. int i,j,k,l;
  12. int count;
  13. while(~scanf("%d%d",&M,&N))
  14. { scanf("%c",&c);
  15. count=0;
  16. for(i=0;i<N;i++)
  17. {scanf("%s",a[i].a);
  18. l=strlen(a[i].a);
  19. for(j=0;j<M-1;j++)
  20. for(k=j+1;k<M;k++)
  21. if(a[i].a[j]>a[i].a[k])
  22. count++;
  23. a[i].number=count;
  24. count=0;
  25. }
  26. /* for(i=0;i<N;i++)
  27. printf("%s %lld\n",a[i].a,a[i].number);*/
  28. for(i=0;i<N-1;i++)
  29. for(j=i+1;j<N;j++)
  30. if(a[i].number>a[j].number)
  31. {
  32. transfer=a[i];a[i]=a[j];a[j]=transfer;
  33. }
  34. for(i=0;i<N;i++)
  35. printf("%s\n",a[i].a);
  36. }
  37. }

发表评论

表情:
评论列表 (有 0 条评论,227人围观)

还没有评论,来说两句吧...

相关阅读

    相关 DNA序列

    > 一个DNA序列由A/C/G/T四个字母的排列组合组成。G和C的比例(定义为GC-Ratio)是序列中G和C两个字母的总的出现次数除以总的字母数目(也就是序列长度)。在基因工

    相关 变色DNA

    有一只特别的狼,它在每个夜晚会进行变色,研究发现它可以变成N种颜色之一,将这些颜色标号为0,1,2...N-1。研究发现这只狼的基因中存在一个变色矩阵,记为colormap,如