A11119 | Sorting by Subsequences
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a sequence $a_{1},a_{2},...,a_{n}$ consisting of different integers. It is required to split this sequence into the maximum number of subsequences such that after sorting integers in each of them in increasing order, the total sequence also will be sorted in increasing order.
Sorting integers in a subsequence is a process such that the numbers included in a subsequence are ordered in increasing order, and the numbers which are not included in a subsequence don't change their places.
Every element of the sequence must appear in exactly one subsequence.
Sorting integers in a subsequence is a process such that the numbers included in a subsequence are ordered in increasing order, and the numbers which are not included in a subsequence don't change their places.
Every element of the sequence must appear in exactly one subsequence.
输入格式
The first line of input data contains integer $n$ ( $1<=n<=10^{5}$ ) — the length of the sequence.
The second line of input data contains $n$ different integers $a_{1},a_{2},...,a_{n}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the elements of the sequence. It is guaranteed that all elements of the sequence are distinct.
The second line of input data contains $n$ different integers $a_{1},a_{2},...,a_{n}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the elements of the sequence. It is guaranteed that all elements of the sequence are distinct.
输出格式
In the first line print the maximum number of subsequences $k$ , which the original sequence can be split into while fulfilling the requirements.
In the next $k$ lines print the description of subsequences in the following format: the number of elements in subsequence $c_{i}$ ( $0<c_{i}<=n$ ), then $c_{i}$ integers $l_{1},l_{2},...,l_{ci}$ ( $1<=l_{j}<=n$ ) — indices of these elements in the original sequence.
Indices could be printed in any order. Every index from $1$ to $n$ must appear in output exactly once.
If there are several possible answers, print any of them.
In the next $k$ lines print the description of subsequences in the following format: the number of elements in subsequence $c_{i}$ ( $0<c_{i}<=n$ ), then $c_{i}$ integers $l_{1},l_{2},...,l_{ci}$ ( $1<=l_{j}<=n$ ) — indices of these elements in the original sequence.
Indices could be printed in any order. Every index from $1$ to $n$ must appear in output exactly once.
If there are several possible answers, print any of them.
输入输出样例
输入 #1
6 3 2 1 6 5 4
输出 #1
4 2 1 3 1 2 2 4 6 1 5
输入 #2
6 83 -75 -49 11 37 62
输出 #2
1 6 1 2 3 4 5 6
In the first sample output:
After sorting the first subsequence we will get sequence $1 2 3 6 5 4$ .
Sorting the second subsequence changes nothing.
After sorting the third subsequence we will get sequence $1 2 3 4 5 6$ .
Sorting the last subsequence changes nothing.
After sorting the first subsequence we will get sequence $1 2 3 6 5 4$ .
Sorting the second subsequence changes nothing.
After sorting the third subsequence we will get sequence $1 2 3 4 5 6$ .
Sorting the last subsequence changes nothing.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted