codeforces 23A. You're Given a String...

巨水的一道题,100的数据O(n^3)复杂度30ms过。

蛋疼的是一开始读错题,substring字串认为是subsequence子序列。字串必须连续...

没啥好说的

#include
#include
#include
#include
#define max(a,b) ((a)>(b)?(a):(b))
#define INF 1000000005
char a[105];
int main()
{
    scanf("%s",a);
    int max=0;
    int la=strlen(a);
    for(int i=0;imax)max=num;
        }
    }
    printf("%d\n",max);
    return 0;
}


你可能感兴趣的:(乱搞)