[LIS]外星人的密码数字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LIS]外星人的密码数字相关的知识,希望对你有一定的参考价值。
思考
首先题目已经提示的很明显了,最长不降子序列。但是把字符串转换成数组就需要一定的技巧。在这里我用的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]外星人的密码数字的主要内容,如果未能解决你的问题,请参考以下文章