Uva1368 DNA Consensus String, uva1368consensus

Source: Internet
Author: User

Uva1368 DNA Consensus String, uva1368consensus
<Tex2html_verbatim_mark> Figure 1.

DNA (Deoxyribonucleic Acid) is the molecule which contains the genetic instructions. it consists of four different nucleus otides, namely Adenine, Thymine, Guanine, and Cytosine as shown in Figure 1. if we represent a nucleus otide by its initial character, a DNA strand can be regarded as a long string (sequence of characters) consisting of the four characters A, T, G, and C. for example, assume we are given some part of a DNA strand which is composed of the following sequence of nucleus otides:


''Thymine-Adenine-Cytosine-Thymine-Guanine-Cytosine-Guanine-Adenine-Thymine"


Then we can represent the above DNA strand with the string ''taactgccgat. "The biologist Prof. ahn found that a gene X commonly exists in the DNA strands of five different kinds of animals, namely dogs, cats, horses, cows, and monkeys. he also discovered that the DNA sequences of the gene X from each animal were very alike. see Figure 2.

 

  DNA sequence of gene X
Cat: GCATATGGCTGTGCA
Dog: GCAAATGGCTGTGCA
Horse: GCTAATGGGTGTCCA
Cow: GCAAATGGCTGTGCA
Monkey: GCAAATCGGTGAGCA

 

Figure 2. DNA sequences of gene X in five animals.


Prof. ahn thought that humans might also have the gene X and decided to search for the DNA sequence of X in human DNA. however, before searching, he shocould define a representative DNA sequence of gene X because its sequences are not exactly the same in the DNA of the five animals. he decided to use the Hamming distance to define the representative sequence. the Hamming distance is the number of different characters at each position from two strings of equal length. for example, assume we are given the two strings''AGCAT"And''GGAAT. "The Hamming distance of these two strings is 2 because the 1st and the 3rd characters of the two strings are different. using the Hamming distance, we can define a representative string for a set of multiple strings of equal length. given a set of stringsS=S1 ,...,SM <tex2html_verbatim_mark> of lengthN<Tex2html_verbatim_mark>, the consensus error between a stringY<Tex2html_verbatim_mark> of lengthN<Tex2html_verbatim_mark> and the setS<Tex2html_verbatim_mark> is the sum of the Hamming distancesY<Tex2html_verbatim_mark> and eachSI <tex2html_verbatim_mark> inS<Tex2html_verbatim_mark>. If the consensus errorY<Tex2html_verbatim_mark> andS<Tex2html_verbatim_mark> is the minimum among all possible stringsY<Tex2html_verbatim_mark> of lengthN<Tex2html_verbatim_mark>,Y<Tex2html_verbatim_mark> is called a consensus stringS<Tex2html_verbatim_mark>. For example, given the three strings''AGCAT"''AGACT"And''GGAAT"The consensus string of the given strings is''AGAAT"Because the sum of the Hamming distances''AGAAT"And the three strings is 3 which is minimal. (In this case, the consensus string is unique, but in general, there can be more than one consensus string .) we use the consensus string as a representative of the DNA sequence. for the example of Figure 2 above, a consensus string of gene X is''GCAAATGGCTGTGCA"And the consensus error is 7.

Input

Your program is to read from standard input. The input consistsT<Tex2html_verbatim_mark> test cases. The number of test casesT<Tex2html_verbatim_mark> is given in the first line of the input. Each test case starts with a line containing two integersM<Tex2html_verbatim_mark> andN<Tex2html_verbatim_mark> which are separated by a single space. The integerM<Tex2html_verbatim_mark> (4M50) <tex2html_verbatim_mark> represents the number of DNA sequences andN<Tex2html_verbatim_mark> (4N(1000) <tex2html_verbatim_mark> represents the length of the DNA sequences, respectively. In each of the nextM<Tex2html_verbatim_mark> lines, each DNA sequence is given.

Output

Your program is to write to standard output. print the consensus string in the first line of each case and the consensus error in the second line of each case. if there exists more than one consensus string, print the lexicographically smallest consensus string. the following shows sample input and output for three test cases.

Sample Input
3 5 8 TATGATAC TAAGCTAC AAAGATCC TGAGATAC TAAGATGT 4 10 ACGTACGTAC CCGTACGTAG GCGTACGTAT TCGTACGTAA 6 10 ATGTTACCAT AAGTTACGAT AACAAAGCAA AAGTTACCTT AAGTTACCAA TACTTACCAA
Sample Output
TAAGATAC 7 ACGTACGTAA 6 AAGTTACCAA 12
This problem is relatively simple, just pay attention to the Lexicographic Order.
Attach the AC code:
1 # include <iostream> 2 # include <algorithm> 3 4 using namespace std; 5 char str [60] [2000]; 6 char ch [2000]; 7 int t [4]; 8 int n; 9 int a, B; 10 int Sum; 11 int Flag; 12 int main () 13 {14 cin> n; 15 while (n --) 16 {17 Sum = 0; 18 cin> a> B; 19 for (int I = 0; I <a; I ++) 20 cin> str [I]; 21 for (int I = 0; I <B; I ++) 22 {23 Flag = 0; 24 t [0] = t [1] = t [2] = t [3] = 0; 25 for (int j = 0; j <a; j ++) 26 {27 if (str [j] [I] = 'A') t [0] ++; 28 if (str [j] [I] = 'C') t [1] ++; 29 if (str [j] [I] = 'G ') t [2] ++; 30 if (str [j] [I] = 'T') T [3] ++; 31} 32 for (int I = 0; I <4; I ++) 33 if (t [I]> t [Flag]) Flag = I; 34 if (Flag = 0) cout <'a '; 35 if (Flag = 1) cout <'C'; 36 if (Flag = 2) cout <'G'; 37 if (Flag = 3) cout <'T'; 38 Sum + = T [Flag]; 39} 40 cout <endl; 41 cout <a * B-Sum <endl; 42} 43 return 0; 44}View Code

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.