题解 | #DNA序列#

DNA序列

https://www.nowcoder.com/practice/e8480ed7501640709354db1cc4ffd42a

#include <iostream>
#include <string>
using namespace std;
//滑动窗口
//每次只记录两端的CG变化
int main() {
    string str;
    cin >> str;
    int n;
    cin >> n;
    int l=0;
    
    int cg=0;
    string result=str.substr(0,n);
    for(int i=0;i<n;++i){
        if(str[i]=='C'||str[i]=='G')
            ++cg;
    }
    int cgmax=cg;
    int r=n;
    while(r<str.size()){
        if(str[r]=='C'||str[r]=='G')
            ++cg;
        if(str[l]=='C'||str[l]=='G')
            --cg;
        ++l;++r;
        if(cg>cgmax){
            cgmax=cg;
            result=str.substr(l,n);
        }
    }
    cout << result;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

11-26 22:34
已编辑
重庆邮电大学 Java
快手 客户端开发 (n+5)k*16 公积金12
牛客895077908号:佬 什么双非硕啊
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务