CF10D.LCIS

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

This problem differs from one which was on the online contest.

The sequence a1,a2,...,ana_{1},a_{2},...,a_{n} is called increasing, if ai<ai+1a_{i}<a_{i+1} for i<ni<n .

The sequence s1,s2,...,sks_{1},s_{2},...,s_{k} is called the subsequence of the sequence a1,a2,...,ana_{1},a_{2},...,a_{n} , if there exist such a set of indexes 1<=i1<i2<...<ik<=n1<=i_{1}<i_{2}<...<i_{k}<=n that aij=sja_{ij}=s_{j} . In other words, the sequence ss can be derived from the sequence aa 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 nn ( 1<=n<=5001<=n<=500 ) — the length of the first sequence. The second line contains nn space-separated integers from the range [0,109][0,10^{9}] — elements of the first sequence. The third line contains an integer mm ( 1<=m<=5001<=m<=500 ) — the length of the second sequence. The fourth line contains mm space-separated integers from the range [0,109][0,10^{9}] — elements of the second sequence.

输出格式

In the first line output kk — 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

    7
    2 3 1 6 5 4 6
    4
    1 3 5 6
    

    输出#1

    3
    3 5 6 
    
  • 输入#2

    5
    1 2 0 2 1
    3
    1 0 1
    

    输出#2

    2
    0 1 
    
首页