2020牛客寒假算法基础训练营1

eli和字符串

  • 题意

双指针(尺取),找一个最短子串有k个重复字母。

  • 思路

这题和后面的字符串都可以用双指针的方法解决,双指针其实就是用两个变量i和j同时遍历字符串,同时用一个数组cnt[ ]记录重复字母个数,当达到k值用j回溯,以达到遍历所有情况的目的。

  • 代码
#include<iostream>
#include<cstdio>
#include<string>
#include<algorithm>

using namespace std;

int cnt[30];
int st[30];

int main() {
    int n,k;
    int res = 2e5 + 10;
    bool flag = false;
    string s;
    cin >> n >> k;
    cin >> s;
    for(int i = 0;i < n;i++) {
        st[s[i] - 'a']++;
    }
    for(int i = 0,j = 0;i < n;i++) {
        cnt[s[i] - 'a']++;
        while(j <= i && cnt[s[i] - 'a'] >= k) {
            cnt[s[j] - 'a']--;
            flag = true;
            j++;
        }
        if(flag) {
            res = min(res,i - j + 2);
            flag = false;
        }
    }
    if(res == 2e5 + 10) {
        cout << -1 << endl;
    }
    else {
        cout << res << endl;
    }
    return 0;
}

nozomi和字符串

  • 题意

一个只由0和1组成的字符串,可以变换<=k次字符串中的字符,使得一个最长的子串中所有字符相同。

  • 思路

同样还是双指针算法就可以解决。

  • 代码
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<string>

using namespace std;

int a[10];

int main() {
    int n,k;
    string s;
    int res = 0;
    cin >> n >> k;
    cin >> s;
    for(int i = 0,j = 0;i < n;i++) {
    	a[s[i] - '0']++;
    	while(j <= i && min(a[0],a[1]) > k) {
    		a[s[j] - '0']--;
    		j++;
    	}
    	res = max(res,i - j + 1);
    }
    cout << res << endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值