CodeForces - 538A暴力

A large banner with word CODEFORCES was ordered for the 1000-th onsite round of Codeforcesω that takes place on the Miami beach. Unfortunately, the company that made the banner mixed up two orders and delivered somebody else's banner that contains someone else's word. The word on the banner consists only of upper-case English letters.

There is very little time to correct the mistake. All that we can manage to do is to cut out some substring from the banner, i.e. several consecutive letters. After that all the resulting parts of the banner will be glued into a single piece (if the beginning or the end of the original banner was cut out, only one part remains); it is not allowed change the relative order of parts of the banner (i.e. after a substring is cut, several first and last letters are left, it is allowed only to glue the last letters to the right of the first letters). Thus, for example, for example, you can cut a substring out from string 'TEMPLATE' and get string 'TEMPLE' (if you cut out string AT), 'PLATE' (if you cut out TEM), 'T' (if you cut out EMPLATE), etc.

Help the organizers of the round determine whether it is possible to cut out of the banner some substring in such a way that the remaining parts formed word CODEFORCES.

Input
The single line of the input contains the word written on the banner. The word only consists of upper-case English letters. The word is non-empty and its length doesn't exceed 100 characters. It is guaranteed that the word isn't word CODEFORCES.

Output
Print 'YES', if there exists a way to cut out the substring, and 'NO' otherwise (without the quotes).

Example
Input
CODEWAITFORITFORCES
Output
YES
Input
BOTTOMCODER
Output
NO
Input
DECODEFORCES
Output
YES
Input
DOGEFORCES
Output

NO

 

【题意】

给你一个字符串,问能否去掉一个子串使得剩下的是CODEFORCES;

注意是只能去掉一个。

【解法】

用pos1,pos2记录切割点,暴力。。

比较傻乎乎的判法嘻嘻嘻。

 

#include<cstdio>
#include<cstring>
char s[105];
int cf[15];
int l;

int judge(int pos1,int pos2){
	int pos=0;
	if(l-(pos2-pos1+1)!=10)	return 0;//如果连长度都不符合就狗带吧
	for(int i=0;i<l;i++){
		if(i==pos1)	i=pos2+1; //到了切割点就跳过 
		if(i>l)	break;
		if(pos==0){
			if(s[i]=='C')	cf[pos++]=1;
			else return 0;	
		}
		else if(pos==1){
			if(s[i]=='O')	cf[pos++]=1;
			else return 0;	
		}
		else if(pos==2){
			if(s[i]=='D')	cf[pos++]=1;
			else return 0;	
		}
		else if(pos==3){
			if(s[i]=='E')	cf[pos++]=1;
			else return 0;	
		}
		else if(pos==4){
			if(s[i]=='F')	cf[pos++]=1;
			else return 0;	
		}
		else if(pos==5){
			if(s[i]=='O')	cf[pos++]=1;
			else return 0;	
		}
		else if(pos==6){
			if(s[i]=='R')	cf[pos++]=1;
			else return 0;	
		}
		else if(pos==7){
			if(s[i]=='C')	cf[pos++]=1;
			else return 0;	
		}
		else if(pos==8){
			if(s[i]=='E')	cf[pos++]=1;
			else return 0;	
		}
		else if(pos==9){
			if(s[i]=='S')	return 1;
			else return 0;	
		}
	}
	return 0;
}
int main(){
	scanf("%s",s);
	int flag=0;
	l=strlen(s);
	for(int i=0;i<l;i++){
	//	int x=1;
 		for(int j=i;j<l;j++){
			if(judge(i,j)){
				flag=1;
				break;
			}
		}
	}
	if(flag)	printf("YES\n");
	else printf("NO\n");
	return 0;
}

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值