A12330 | Egor and an RPG game
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
One Saturday afternoon Egor was playing his favorite RPG game. While discovering new lands and territories, he came across the following sign:
Egor is a passionate player, but he is an algorithmician as well. That's why he instantly spotted four common letters in two words on the sign above — if we permute the letters "R", "E", "G", "O" from the first word, we can obtain the letters "O", "G", "R", "E". Egor got inspired by the sign and right away he came up with a problem about permutations.
You are given a permutation of length $n$ . You have to split it into some non-empty subsequences so that each element of the permutation belongs to exactly one subsequence. Each subsequence must be monotonic — that is, either increasing or decreasing.
Sequence is called to be a subsequence if it can be derived from permutation by deleting some (possibly none) elements without changing the order of the remaining elements.
The number of subsequences should be small enough — let $f(n)$ be the minimum integer $k$ such that every permutation of length $n$ can be partitioned into at most $k$ monotonic subsequences.
You need to split the permutation into at most $f(n)$ monotonic subsequences.
Egor is a passionate player, but he is an algorithmician as well. That's why he instantly spotted four common letters in two words on the sign above — if we permute the letters "R", "E", "G", "O" from the first word, we can obtain the letters "O", "G", "R", "E". Egor got inspired by the sign and right away he came up with a problem about permutations.
You are given a permutation of length $n$ . You have to split it into some non-empty subsequences so that each element of the permutation belongs to exactly one subsequence. Each subsequence must be monotonic — that is, either increasing or decreasing.
Sequence is called to be a subsequence if it can be derived from permutation by deleting some (possibly none) elements without changing the order of the remaining elements.
The number of subsequences should be small enough — let $f(n)$ be the minimum integer $k$ such that every permutation of length $n$ can be partitioned into at most $k$ monotonic subsequences.
You need to split the permutation into at most $f(n)$ monotonic subsequences.
输入格式
The first line contains one integer $t$ ( $1 \leq t \leq 10^5$ ) — the number of test cases.
You can only use $t = 1$ in hacks.
Next, descriptions of $t$ test cases come, each of them in the following format.
The first line of a single test case contains one integer $n$ ( $1 \leq n \leq 10^5$ ) — the length of the permutation. The second line contains $n$ distinct integers $a_i$ ( $1 \leq a_i \leq n$ ) — the permutation itself.
The sum of the values of $n$ over all test cases doesn't exceed $10^5$ .
You can only use $t = 1$ in hacks.
Next, descriptions of $t$ test cases come, each of them in the following format.
The first line of a single test case contains one integer $n$ ( $1 \leq n \leq 10^5$ ) — the length of the permutation. The second line contains $n$ distinct integers $a_i$ ( $1 \leq a_i \leq n$ ) — the permutation itself.
The sum of the values of $n$ over all test cases doesn't exceed $10^5$ .
输出格式
For each test case print the answer in the following format:
In the first line print $k$ ( $1 \leq k \leq f(n)$ ) — the number of the subsequences in the partition. In the next $k$ lines, print the descriptions of found subsequences. Each description should start with a number $l_i$ ( $1 \leq l_i \leq n$ ) — the length of the corresponding subsequence, followed by $l_i$ integers — the values of this subsequence in the order in which they occur in the permutation.
Each subsequence you output must be either increasing or decreasing.
In case there are multiple possible answers, print any of them.
In the first line print $k$ ( $1 \leq k \leq f(n)$ ) — the number of the subsequences in the partition. In the next $k$ lines, print the descriptions of found subsequences. Each description should start with a number $l_i$ ( $1 \leq l_i \leq n$ ) — the length of the corresponding subsequence, followed by $l_i$ integers — the values of this subsequence in the order in which they occur in the permutation.
Each subsequence you output must be either increasing or decreasing.
In case there are multiple possible answers, print any of them.
输入输出样例
输入 #1
3 4 4 3 1 2 6 4 5 6 1 3 2 10 1 2 3 4 5 6 7 8 9 10
输出 #1
2 3 4 3 1 1 2 3 2 4 1 2 5 6 2 3 2 1 10 1 2 3 4 5 6 7 8 9 10
In the example, we can split:
- $[4, 3, 1, 2]$ into $[4, 3, 1]$ , $[2]$
- $[4, 5, 6, 1, 3, 2]$ into $[4, 1]$ , $[5, 6]$ and $[3, 2]$
- $[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]$ into $[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]$
Surely, there are many more answers possible.
- $[4, 3, 1, 2]$ into $[4, 3, 1]$ , $[2]$
- $[4, 5, 6, 1, 3, 2]$ into $[4, 1]$ , $[5, 6]$ and $[3, 2]$
- $[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]$ into $[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]$
Surely, there are many more answers possible.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted