lalalala


私信TA

用户名:zhangshuo

访问量:161486

签 名:

像狗一样的学习,像绅士一样地玩耍。

等  级
排  名 7
经  验 31290
参赛次数 10
文章发表 201
年  龄 12
在职情况 学生
学  校 芜湖市第十一中学
专  业

  自我简介:

今日懒惰流下的口水,将会成为明日里伤心的泪水。

解题思路:





注意事项:





参考代码:

#include<iostream>  
#include<string>  
using namespace std;  
  
const int maxn = 100000;  
int order[26];  
int dp[maxn];  
  
int main(){  
    string s;  
    cin >> s;  
    int n = s.length();  
    int i, j;  
    for(i = 0; i < n; ++i){  
        order[s[i] - 'a'] = i;  
    }  
    int temp, res;  
    while(cin >> s){  
        n = s.length();  
        res = 0;  
        for(i = 0; i < n; ++i){  
            dp[i] = 1;  
            for(j = 0; j < i; ++j){  
                if(order[s[j] - 'a'] <= order[s[i] - 'a'] && (temp = dp[j] + 1) > dp[i]){  
                    dp[i] = temp;  
                }  
            }  
            res = max(res, dp[i]);  
        }  
        cout << res;  
    }  
    cout << endl;  
}


 

0.0分

0 人评分

  评论区

  • «
  • »