A13271 | Dreamoon Likes Permutations
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The sequence of $m$ integers is called the permutation if it contains all integers from $1$ to $m$ exactly once. The number $m$ is called the length of the permutation.
Dreamoon has two permutations $p_1$ and $p_2$ of non-zero lengths $l_1$ and $l_2$ .
Now Dreamoon concatenates these two permutations into another sequence $a$ of length $l_1 + l_2$ . First $l_1$ elements of $a$ is the permutation $p_1$ and next $l_2$ elements of $a$ is the permutation $p_2$ .
You are given the sequence $a$ , and you need to find two permutations $p_1$ and $p_2$ . If there are several possible ways to restore them, you should find all of them. (Note that it is also possible that there will be no ways.)
Dreamoon has two permutations $p_1$ and $p_2$ of non-zero lengths $l_1$ and $l_2$ .
Now Dreamoon concatenates these two permutations into another sequence $a$ of length $l_1 + l_2$ . First $l_1$ elements of $a$ is the permutation $p_1$ and next $l_2$ elements of $a$ is the permutation $p_2$ .
You are given the sequence $a$ , and you need to find two permutations $p_1$ and $p_2$ . If there are several possible ways to restore them, you should find all of them. (Note that it is also possible that there will be no ways.)
输入格式
The first line contains an integer $t$ ( $1 \le t \le 10\,000$ ) denoting the number of test cases in the input.
Each test case contains two lines. The first line contains one integer $n$ ( $2 \leq n \leq 200\,000$ ): the length of $a$ . The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \leq a_i \leq n-1$ ).
The total sum of $n$ is less than $200\,000$ .
Each test case contains two lines. The first line contains one integer $n$ ( $2 \leq n \leq 200\,000$ ): the length of $a$ . The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \leq a_i \leq n-1$ ).
The total sum of $n$ is less than $200\,000$ .
输出格式
For each test case, the first line of output should contain one integer $k$ : the number of ways to divide $a$ into permutations $p_1$ and $p_2$ .
Each of the next $k$ lines should contain two integers $l_1$ and $l_2$ ( $1 \leq l_1, l_2 \leq n, l_1 + l_2 = n$ ), denoting, that it is possible to divide $a$ into two permutations of length $l_1$ and $l_2$ ( $p_1$ is the first $l_1$ elements of $a$ , and $p_2$ is the last $l_2$ elements of $a$ ). You can print solutions in any order.
Each of the next $k$ lines should contain two integers $l_1$ and $l_2$ ( $1 \leq l_1, l_2 \leq n, l_1 + l_2 = n$ ), denoting, that it is possible to divide $a$ into two permutations of length $l_1$ and $l_2$ ( $p_1$ is the first $l_1$ elements of $a$ , and $p_2$ is the last $l_2$ elements of $a$ ). You can print solutions in any order.
输入输出样例
输入 #1
6 5 1 4 3 2 1 6 2 4 1 3 2 1 4 2 1 1 3 4 1 3 3 1 12 2 1 3 4 5 6 7 8 9 1 10 2 3 1 1 1
输出 #1
2 1 4 4 1 1 4 2 0 0 1 2 10 0
In the first example, two possible ways to divide $a$ into permutations are $\{1\} + \{4, 3, 2, 1\}$ and $\{1,4,3,2\} + \{1\}$ .
In the second example, the only way to divide $a$ into permutations is $\{2,4,1,3\} + \{2,1\}$ .
In the third example, there are no possible ways.
In the second example, the only way to divide $a$ into permutations is $\{2,4,1,3\} + \{2,1\}$ .
In the third example, there are no possible ways.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted