[题目描述] 给出两个序列,求出最长公共上升子序列的长度,并输出其中一个解. [题目链接] http://noi.openjudge.cn/ch0206/2000/ [算法] 经典问题,结合了LIS和LCS. [代码] #include <bits/stdc++.h> using namespace std; int len1,len2,i,j,ans,ri,rj; ],s2[],rec[][],dp[][]; void print(int x,int y) { switch(rec[x][y…