A12509 | Dirty Deeds Done Dirt Cheap
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given $n$ pairs of integers $(a_1, b_1), (a_2, b_2), \ldots, (a_n, b_n)$ . All of the integers in the pairs are distinct and are in the range from $1$ to $2 \cdot n$ inclusive.
Let's call a sequence of integers $x_1, x_2, \ldots, x_{2k}$ good if either
- $x_1 < x_2 > x_3 < \ldots < x_{2k-2} > x_{2k-1} < x_{2k}$ , or
- $x_1 > x_2 < x_3 > \ldots > x_{2k-2} < x_{2k-1} > x_{2k}$ .
You need to choose a subset of distinct indices $i_1, i_2, \ldots, i_t$ and their order in a way that if you write down all numbers from the pairs in a single sequence (the sequence would be $a_{i_1}, b_{i_1}, a_{i_2}, b_{i_2}, \ldots, a_{i_t}, b_{i_t}$ ), this sequence is good.
What is the largest subset of indices you can choose? You also need to construct the corresponding index sequence $i_1, i_2, \ldots, i_t$ .
Let's call a sequence of integers $x_1, x_2, \ldots, x_{2k}$ good if either
- $x_1 < x_2 > x_3 < \ldots < x_{2k-2} > x_{2k-1} < x_{2k}$ , or
- $x_1 > x_2 < x_3 > \ldots > x_{2k-2} < x_{2k-1} > x_{2k}$ .
You need to choose a subset of distinct indices $i_1, i_2, \ldots, i_t$ and their order in a way that if you write down all numbers from the pairs in a single sequence (the sequence would be $a_{i_1}, b_{i_1}, a_{i_2}, b_{i_2}, \ldots, a_{i_t}, b_{i_t}$ ), this sequence is good.
What is the largest subset of indices you can choose? You also need to construct the corresponding index sequence $i_1, i_2, \ldots, i_t$ .
输入格式
The first line contains single integer $n$ ( $2 \leq n \leq 3 \cdot 10^5$ ) — the number of pairs.
Each of the next $n$ lines contain two numbers — $a_i$ and $b_i$ ( $1 \le a_i, b_i \le 2 \cdot n$ ) — the elements of the pairs.
It is guaranteed that all integers in the pairs are distinct, that is, every integer from $1$ to $2 \cdot n$ is mentioned exactly once.
Each of the next $n$ lines contain two numbers — $a_i$ and $b_i$ ( $1 \le a_i, b_i \le 2 \cdot n$ ) — the elements of the pairs.
It is guaranteed that all integers in the pairs are distinct, that is, every integer from $1$ to $2 \cdot n$ is mentioned exactly once.
输出格式
In the first line print a single integer $t$ — the number of pairs in the answer.
Then print $t$ distinct integers $i_1, i_2, \ldots, i_t$ — the indexes of pairs in the corresponding order.
Then print $t$ distinct integers $i_1, i_2, \ldots, i_t$ — the indexes of pairs in the corresponding order.
输入输出样例
输入 #1
5 1 7 6 4 2 10 9 8 3 5
输出 #1
3 1 5 3
输入 #2
3 5 4 3 2 6 1
输出 #2
3 3 2 1
The final sequence in the first example is $1 < 7 > 3 < 5 > 2 < 10$ .
The final sequence in the second example is $6 > 1 < 3 > 2 < 5 > 4$ .
The final sequence in the second example is $6 > 1 < 3 > 2 < 5 > 4$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted