标签:style color io os ar for sp div c
3 aaa ababc abklmncdefg
1 3 7
#include<stdio.h> #include<string.h> #define max(a,b) a>b?a:b; char str[10005]; int s[10005]; int main() { int n; scanf("%d",&n); while(n--) { int i,j,ans=0,len; scanf("%s",str); len=strlen(str);//计算字符串的长度 for(i=0;i<len;i++)//循环计算累加 { s[i]=1; for(j=0;j<i;j++) { if(str[i]>str[j]) s[i]=max(s[i],s[j]+1); } ans=max(s[i],ans);//找出最长的 } printf("%d\n",ans); } return 0; }
标签:style color io os ar for sp div c
原文地址:http://blog.csdn.net/u013238646/article/details/39860191