A - 炒鸡想减肥的字符串
Time Limit:1000MS Memory Limit:65535KB 64bit IO Format:
Description
从前,有一串很长很长的字符串,它由n个小写字母组成。
有一天它在照镜子的时候,觉得自己太肥了,于是它想减肥。减肥的时候,可以不断地去掉第一个或者最后一个字符。
它希望自己减肥之后,对于必须保持苗条系数M,苗条系数即必须包含‘a‘,‘b‘,‘c‘…… ‘a‘+M-1 这些字符,至少一个.
Input
第一行有一个数字T,表示组数。T <= 25
接下去每组有2个整数N,M. N <= 1000 表示字符串长度, M是苗条系数.
然后是一串由小写字母组成的字符串,字符串的长度n <= 1000。
Output
每行输出一个数字,表示该组数据求得的最小长度。对于不能减肥的小小骚年们,我们只能表示"I am so fat!".
Sample Input
3 5 3 ccbaa 11 3 abbbbdbbbbc 4 3 abba
Sample Output
3 11 I am so fat!#include <cstdio> #include <iostream> #include <algorithm> #include <queue> #include <stack> #include <climits> #include <cstring> #include <cmath> #include <map> #include <set> #define INF 100000000 using namespace std; int n,m; char a[1005]; int num[30]; int main(){ int t; cin >> t; while(t--){ cin >> n >> m; scanf("%s",a); int s = 0; int e = 0; memset(num,0,sizeof(num)); int cc = 0; int ans = INF; while(s < n){ while(cc < m && e < n){ if(a[e]-'a' < m && num[a[e]-'a'] == 0) cc++; num[a[e] - 'a'] ++; e++; } if((e-s) < ans && cc >= m) ans = e-s; num[a[s]-'a']--; if(a[s]-'a' < m && num[a[s]-'a'] == 0){ cc--; } s++; if((e-s) < ans && cc >= m) ans = e-s; } if(ans == INF) cout << "I am so fat!"<< endl; else cout << ans << endl; } return 0; }
时间: 2024-10-29 10:45:56