首页 > 代码库 > Codeforces Round #253 (Div. 2)B(暴力枚举)
Codeforces Round #253 (Div. 2)B(暴力枚举)
就暴力枚举所有起点和终点就行了。
我做这题时想的太多了,最简单的暴力枚举起始点却没想到。。。应该先想最简单的方法,层层深入。
#include<iostream>#include<cstdio>#include<cstdlib>#include<cstring>#include<cmath>#include<map>#include<set>#include<vector>#include<algorithm>#include<stack>#include<queue>using namespace std;#define INF 1000000000#define eps 1e-8#define pii pair<int,int>#define LL long long intchar s[500];int k,ans;void check(int b,int e){ int l=e-b+1; if(l&1) return; else { int t=l/2; for(int i=b;i<b+t;i++) { if(s[i]==s[t+i]||s[t+i]==0) continue; else return; } ans=max(ans,l); return; }}int main(){ //freopen("in7.txt","r",stdin); //freopen("out.txt","w",stdout); scanf("%s",s); scanf("%d",&k); int len=strlen(s); int lens=len+k; ans=0; for(int i=0;i<lens-1;i++) { for(int j=i+1;j<=lens-1;j++) { check(i,j); } } printf("%d\n",ans); //fclose(stdin); //fclose(stdout); return 0;}
Codeforces Round #253 (Div. 2)B(暴力枚举)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。