牛客[编程题] HJ63 DNA序列
中等 通过率:39.36% 时间限制:1秒 空间限制:32M
描述
一个 DNA 序列由 A/C/G/T 四个字母的排列组合组成。 G 和 C 的比例(定义为 GC-Ratio )是序列中 G 和 C 两个字母的总的出现次数除以总的字母数目(也就是序列长度)。在基因工程中,这个比例非常重要。因为高的 GC-Ratio 可能是基因的起始点。
给定一个很长的 DNA 序列,以及限定的子串长度 N ,请帮助研究人员在给出的 DNA 序列中从左往右找出 GC-Ratio 最高且长度为 N 的第一个子串。
DNA序列为 ACGT 的子串有: ACG , CG , CGT 等等,但是没有 AGT , CT 等等
数据范围:字符串长度满足 1 \le n \le 1000 \ ,输入的字符串只包含 A/C/G/T 字母
输入描述:
输入一个string型基因序列,和int型子串的长度
输出描述:
找出GC比例最高的子串,如果有多个则输出第一个的子串
示例1
输入:
ACGT
2
输出:
CG
示例2
输入:
AACTGTGCACGACCTGA
5
输出:
GCACG
using System;
public class Program
{
public static void Main()
{
string line;string line1 = null;string line2 = null;
while ((line = System.Console.ReadLine()) != null)
{ // 注意 while 处理多个 case
if (line1==null)
{
line1 = line;
}
else
{
line2 = line;
int len = int.Parse(line2);
int gc = 0;
int max = 0;
string sub;
string res=string.Empty;
for (int i = 0; i <= line1.Length-len; i++)
{
sub = line1.Substring(i,len);
gc = GetGcCount(sub);
if (gc>max)
{
max = gc;
res = sub;
}
}
Console.WriteLine(res);
}
}
}
public static int GetGcCount(string s)
{
int count = 0;
foreach (var c in s)
{
if (c=='G'||c=='C')
{
count++;
}
}
return count;
}
}