最长公共子上升序列(LCIS)

最长公共子上升序列

AC_Code

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <string>
 4 #include <cstring>
 5 #include <string>
 6 #include <cmath>
 7 #include <cstdlib>
 8 #include <algorithm>
 9 using namespace std;
10 typedef long long ll;
11 const int maxn = 1010;
12 const int inf=0x3f3f3f3f;
13
14 struct node{
15     int len;
16     int ans[maxn];
17 }dp[maxn],maxx;
18 int a[maxn],b[maxn];
19
20 int main()
21 {
22     int n,m;
23     scanf("%d",&n);
24     for(int i=1;i<=n;i++){
25         scanf("%d",&a[i]);
26     }
27     scanf("%d",&m);
28     for(int i=1;i<=m;i++){
29         scanf("%d",&b[i]);
30     }
31
32     for(int i=1;i<=n;i++){
33         maxx.len=0;
34         memset(maxx.ans,0,sizeof(maxx.ans));
35         for(int j=1;j<=m;j++){
36             if( a[i]>b[j] && dp[j].len>maxx.len ){
37                 maxx = dp[j];
38             }
39             else if( a[i]==b[j] ){
40                 dp[j]=maxx;
41                 dp[j].len=maxx.len+1;
42                 dp[j].ans[dp[j].len] = b[j];
43             }
44         }
45     }
46
47     int flag=0;
48     int maxxx=-inf;
49     for(int i=1;i<=n;i++){
50         if( dp[i].len>maxxx ){
51             maxxx = dp[i].len;
52             flag=i;
53         }
54     }
55     printf("%d\n",dp[flag].len);
56     for(int i=1;i<=dp[flag].len;i++){
57         printf("%d ",dp[flag].ans[i]);
58     }
59     printf("\n");
60     return 0;
61 }

原文地址:https://www.cnblogs.com/wsy107316/p/12244684.html

时间: 2024-11-05 18:45:36

最长公共子上升序列(LCIS)的相关文章

2000:最长公共子上升序列

2000:最长公共子上升序列 查看 提交 统计 提问 总时间限制:  10000ms 内存限制:  65536kB 描述 给定两个整数序列,写一个程序求它们的最长上升公共子序列.当以下条件满足的时候,我们将长度为N的序列S1 , S2 , . . . , SN 称为长度为M的序列A1 , A2 , . . . , AM的上升子序列: 存在 1 <= i1 < i2 < . . . < iN <= M ,使得对所有 1 <= j <=N,均有Sj = Aij,且对于

网易2017秋招笔试题3:最长公共子括号序列长度

[问题来源]网传的2017网易秋招笔试题 [问题描述] [算法思路] 下面的解题思路摘自  http://www.cnblogs.com/Atanisi/p/7500186.html 刚看到题我就想到暴力解,深搜出所有合法的括号序列,再依次比较公共子序列的长度,返回最长的.但是深搜一般和路径有关,这道题仅仅需要最大公共子序列的长度.而我们发现最大公共子序列的长度就是 s.size() - 1(当且仅当修改距离为 1 时 LCS 最大), 那么我们就想到,可以变换 s 中一个括号的位置,枚举所有的

最长公共子上升序列

总时间限制:  10000ms 内存限制:  65536kB 描述 给定两个整数序列,写一个程序求它们的最长上升公共子序列.当以下条件满足的时候,我们将长度为N的序列S1 , S2 , . . . , SN 称为长度为M的序列A1 , A2 , . . . , AM的上升子序列: 存在 1 <= i1 < i2 < . . . < iN <= M ,使得对所有 1 <= j <=N,均有Sj = Aij,且对于所有的1 <= j < N,均有Sj &l

动态规划--之--最长公共子字符串

package 动态规划;import java.util.Scanner;public class LogestCommonZiXuLie { public static void main(String[] args)     {      Scanner scan = new Scanner(System.in);      while(scan.hasNextLine())        {          String str = scan.nextLine();         

uva 10066 The Twin Towers (最长公共子)

uva 10066 The Twin Towers 标题效果:最长公共子. 解题思路:最长公共子. #include<stdio.h> #include<string.h> #include<stdlib.h> #include<algorithm> using namespace std; int a[105], b[105], dp[105][105]; int main() { int n, m, Case = 1; while (scanf(&quo

使用后缀数组寻找最长公共子字符串JavaScript版

后缀数组很久很久以前就出现了,具体的概念读者自行搜索,小菜仅略知一二,不便讨论. 本文通过寻找两个字符串的最长公共子字符串,演示了后缀数组的经典应用. 首先需要说明,小菜实现的这个后缀数组算法,并非标准,只是借鉴了其中的思想. 小菜实现的算法,有两个版本,第一个是空间换时间,第二个是时间换空间. 空间换时间版本 1 /* 2 利用后缀数组获取两个字符串最长公共子字符串 3 空间换时间版本 4 @params 5 s1 String,要分析的字符串 6 s2 String,要分析的字符串 7 no

LIS(最长的序列)和LCS(最长公共子)总结

LIS(最长递增子序列)和LCS(最长公共子序列)的总结 最长公共子序列(LCS):O(n^2) 两个for循环让两个字符串按位的匹配:i in range(1, len1) j in range(1, len2) s1[i - 1] == s2[j - 1], dp[i][j] = dp[i - 1][j -1] + 1; s1[i - 1] != s2[j - 1], dp[i][j] = max (dp[i - 1][j], dp[i][j - 1]); 初始化:dp[i][0] = dp

zoj2432 hdoj1423 最长公共上升子序列(LCIS)

zoj2431  http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2432 hdoj 1423 http://acm.hdu.edu.cn/showproblem.php?pid=1423 题意: 一看题目题意就很明显了, 两个数组a,b,求出两个数组公共的最长的上升子序列(可以不是连续的子序列). 分析: 如果做过[最长公共子序列](http://blog.csdn.net/wangdan11111/article/de

最长公共上升子序列(LCIS)问题的O(n^2)解法

J - 病毒 Time Limit:3000MS     Memory Limit:131072KB     64bit IO Format:%lld & %llu Submit Status Practice CSU 1120 Appoint description:  System Crawler  (2015-01-04) Description 你有一个日志文件,里面记录着各种系统事件的详细信息.自然的,事件的时间戳按照严格递增顺序排列(不会有两个事件在完全相同的时刻发生). 遗憾的是,