C语言——codeforces981A 题解

A. Antipalindrome

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" are not.

A substring s[l…r]s[l…r] (1 ≤ l ≤ r ≤ |s|1 ≤ l ≤ r ≤ |s|) of a string s = s1s2…s|s|s = s1s2…s|s| is the string slsl + 1…srslsl + 1…sr.

Anna does not like palindromes, so she makes her friends call her Ann. She also changes all the words she reads in a similar way. Namely, each word ss is changed into its longest substring that is not a palindrome. If all the substrings of ss are palindromes, she skips the word at all.

Some time ago Ann read the word ss. What is the word she changed it into?

Input

The first line contains a non-empty string ss with length at most 5050 characters, containing lowercase English letters only.

Output

If there is such a substring in ss that is not a palindrome, print the maximum length of such a substring. Otherwise print 00.

Note that there can be multiple longest substrings that are not palindromes, but their length is unique.

Examples

input

Copy

mew

output

Copy

3

input

Copy

wuffuw

output

Copy

5

input

Copy

qqqqqqqq

output

Copy

0

注意事项:

1.题意分析:

字符串 不是回文类型 如wert字符串 是回文类型 但字符不完全一样 如waaw字符串 是回文类型 但所有字符一样 如wwww
输出 = 字符串长度      如4输出 =  字符串长度-1                            如3输出 = 0

 

2.for(i = 0; i < strlen(a)/2; i++) 要折半 如果写出i < strlen(a) 答案就不对 具体原因我还没想清楚

#include<stdio.h>
#include<string.h>
int main()
{
    char a[100],b[100];
    int j = 0;
    gets(a);
    int i;
    int result;
    for (i = strlen(a) - 1; i >= 0; i--)
    {
        b[j++] = a[i];
    }
    b[j] = '\0';//自己添加结束符 因为赋值过程中不会添加的

    if (strcmp(a,b) == 0)//是回文串
    {
        for(i = 0; i < strlen(a)/2; i++)//i<一半的长度
        {
            if(a[i]!=a[i+1])//是字符串不完全一样的回文串 如weew这种
            {
                result = strlen(a) -1;
                break;
            }
            else
            {
             result = 0;//是字符串完全一样的回文串 如wwww这种
            }
        }

    }

    if (strcmp(a,b) != 0)
    {
        result = strlen(a);
    }
    printf("%d", result);
}

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值