#276. LCIS
LCIS
No testdata at current.
LCIS
题面翻译
求两个串的最长公共上升子序列。
题目描述
This problem differs from one which was on the online contest.
The sequence is called increasing, if for .
The sequence is called the subsequence of the sequence , if there exist such a set of indexes that . In other words, the sequence can be derived from the sequence by crossing out some elements.
You are given two sequences of integer numbers. You are to find their longest common increasing subsequence, i.e. an increasing sequence of maximum length that is the subsequence of both sequences.
输入格式
The first line contains an integer ( ) — the length of the first sequence. The second line contains space-separated integers from the range — elements of the first sequence. The third line contains an integer ( ) — the length of the second sequence. The fourth line contains space-separated integers from the range — elements of the second sequence.
输出格式
In the first line output — the length of the longest common increasing subsequence. In the second line output the subsequence itself. Separate the elements with a space. If there are several solutions, output any.
样例 #1
样例输入 #1
7
2 3 1 6 5 4 6
4
1 3 5 6
样例输出 #1
3
3 5 6
样例 #2
样例输入 #2
5
1 2 0 2 1
3
1 0 1
样例输出 #2
2
0 1