A - Cutting Banner(substr()函数)four

本文详细介绍了 CodeForces 平台上题目 538A 的解题思路与实现代码,利用 substr 函数巧妙地解决了字符串匹配问题,并通过控制循环次数来优化程序运行效率。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目链接:http://codeforces.com/problemset/problem/538/A点击打开链接

解题思路

    several consecutive letters.(可以使用substr()函数)

在使用该函数的时候,需要注意:其截取子串的方向为从左到右

如果你还不了解substr函数的用法,可以看我写的这个用法博客点击打开链接

最后运行程序的时候,还是runtime error,因此自己检查后发现循环次数只需控制在i <= 10即可。

实现代码:

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<iostream>
using namespace std;

int main()
{
	int i,j,flag = 0;
	string first;
	string second = "CODEFORCES";
	cin >> first;
	int len = first.length();
	if(len <= 10)
		cout << "NO" << endl;
	else
	{
		for(i = 0;i <= 10; i++)
		{
				if(first.substr(0,i) + first.substr(len - 10 + i,10 - i) == second)
				{
					cout << "YES" << endl;
					flag = 1;
					break;
				}
		}
	if(flag == 0)	
		cout << "NO" << endl;
	}
	return 0;
}

Welcome to my blog, and I hope what I write will help you.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值