A10056 | Longest Increasing Subsequence
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Note that the memory limit in this problem is less than usual.
Let's consider an array consisting of positive integers, some positions of which contain gaps.
We have a collection of numbers that can be used to fill the gaps. Each number from the given collection can be used at most once.
Your task is to determine such way of filling gaps that the longest increasing subsequence in the formed array has a maximum size.
Let's consider an array consisting of positive integers, some positions of which contain gaps.
We have a collection of numbers that can be used to fill the gaps. Each number from the given collection can be used at most once.
Your task is to determine such way of filling gaps that the longest increasing subsequence in the formed array has a maximum size.
输入格式
The first line contains a single integer $n$ — the length of the array ( $1<=n<=10^{5}$ ).
The second line contains $n$ space-separated integers — the elements of the sequence. A gap is marked as "-1". The elements that are not gaps are positive integers not exceeding $10^{9}$ . It is guaranteed that the sequence contains $0<=k<=1000$ gaps.
The third line contains a single positive integer $m$ — the number of elements to fill the gaps ( $k<=m<=10^{5}$ ).
The fourth line contains $m$ positive integers — the numbers to fill gaps. Each number is a positive integer not exceeding $10^{9}$ . Some numbers may be equal.
The second line contains $n$ space-separated integers — the elements of the sequence. A gap is marked as "-1". The elements that are not gaps are positive integers not exceeding $10^{9}$ . It is guaranteed that the sequence contains $0<=k<=1000$ gaps.
The third line contains a single positive integer $m$ — the number of elements to fill the gaps ( $k<=m<=10^{5}$ ).
The fourth line contains $m$ positive integers — the numbers to fill gaps. Each number is a positive integer not exceeding $10^{9}$ . Some numbers may be equal.
输出格式
Print $n$ space-separated numbers in a single line — the resulting sequence. If there are multiple possible answers, print any of them.
输入输出样例
输入 #1
3 1 2 3 1 10
输出 #1
1 2 3
输入 #2
3 1 -1 3 3 1 2 3
输出 #2
1 2 3
输入 #3
2 -1 2 2 2 4
输出 #3
2 2
输入 #4
3 -1 -1 -1 5 1 1 1 1 2
输出 #4
1 1 2
输入 #5
4 -1 -1 -1 2 4 1 1 2 2
输出 #5
1 2 1 2
In the first sample there are no gaps, so the correct answer is the initial sequence.
In the second sample there is only one way to get an increasing subsequence of length $3$ .
In the third sample answer "4 2" would also be correct. Note that only strictly increasing subsequences are considered.
In the fifth sample the answer "1 1 1 2" is not considered correct, as number $1$ can be used in replacing only two times.
In the second sample there is only one way to get an increasing subsequence of length $3$ .
In the third sample answer "4 2" would also be correct. Note that only strictly increasing subsequences are considered.
In the fifth sample the answer "1 1 1 2" is not considered correct, as number $1$ can be used in replacing only two times.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted