A. Mike and palindrome1000 / 思维

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Mike and palindrome1000 / 思维相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/798/A

#include<bits/stdc++.h>
using namespace std;
int main(void)
{
	string s; cin>>s;
	int n=s.size();
	int cnt=0;
	for(int i=0;i<n/2;i++)
	{
		if(s[i]!=s[n-1-i]) cnt++;
	}
	if(cnt==1) puts("YES");//只有一个不对称
	else if(cnt==0&&n&1) puts("YES");//或者说是没有不对称的,它是个奇数改中间即可
	else puts("NO");
}

以上是关于A. Mike and palindrome1000 / 思维的主要内容,如果未能解决你的问题,请参考以下文章

Mike and palindrome CodeForces - 798A

Codeforces Round #410 (Div. 2)-A - Mike and palindrome

Codeforces Round #721 (Div. 2)A. And Then There Were K(位运算,二进制) B1. Palindrome Game (easy version)(

Codeforces-798C. Mike and gcd problem

<mysql问题>如何同时使用between和like吗?

Mike and strings