码迷,mamicode.com
首页 > 其他好文 > 详细

[LIS]外星人的密码数字

时间:2017-06-06 13:15:46      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:while   www   ror   space   out   tyvj   turn   include   closed   

题目链接

思考

首先题目已经提示的很明显了,最长不降子序列。但是把字符串转换成数组就需要一定的技巧。在这里我用的map<char,int> 每个字符串映射一个数字

技术分享
#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <map>
#include <vector>
using namespace std;
map <char,int> s;
char fuck,t[1005];
int a[1005],dp[2333];
int main(){
    for(int i=1;i<=26;i++){
        char fuck;
        fuck = getchar();  //单个字符串读入 
        s[fuck]=i; //每个字符串映射 第i个数字 
    }
        while( ~scanf("%s",&t[1]) ){  //从1位置开始读入 
        int tot = strlen(&t[1]);
        for(int i=1;i<=tot;i++){
            a[i] = s[t[i]];  //转化为数组 
        }
        int ans=0; 
        //O(N^2)的LIS  
        for(int i=1;i<=tot;i++){
            dp[i]=1;
            for(int j=1;j<i;j++) if(a[j]<=a[i]){
                dp[i] = max(dp[i],dp[j]+1);
            }
            ans = max(ans,dp[i]);
        }
        cout<<ans;
        ans=-1;  //注意每次的初始化 
        }
    return 0;
}
代码实现

 

 

吐槽

tvvj的评测姬终于不搞事情了,之前每次提交不是 Runing 就是 System error....

[LIS]外星人的密码数字

标签:while   www   ror   space   out   tyvj   turn   include   closed   

原文地址:http://www.cnblogs.com/OIerLYF/p/6950689.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!