A13682 | The Thorny Path
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
According to a legend the Hanoi Temple holds a permutation of integers from $1$ to $n$ . There are $n$ stones of distinct colors lying in one line in front of the temple. Monks can perform the following operation on stones: choose a position $i$ ( $1 \le i \le n$ ) and cyclically shift stones at positions $i$ , $p[i]$ , $p[p[i]]$ , .... That is, a stone from position $i$ will move to position $p[i]$ , a stone from position $p[i]$ will move to position $p[p[i]]$ , and so on, a stone from position $j$ , such that $p[j] = i$ , will move to position $i$ .
Each day the monks must obtain a new arrangement of stones using an arbitrary number of these operations. When all possible arrangements will have been obtained, the world will end. You are wondering, what if some elements of the permutation could be swapped just before the beginning? How many days would the world last?
You want to get a permutation that will allow the world to last as long as possible, using the minimum number of exchanges of two elements of the permutation.
Two arrangements of stones are considered different if there exists a position $i$ such that the colors of the stones on that position are different in these arrangements.
Each day the monks must obtain a new arrangement of stones using an arbitrary number of these operations. When all possible arrangements will have been obtained, the world will end. You are wondering, what if some elements of the permutation could be swapped just before the beginning? How many days would the world last?
You want to get a permutation that will allow the world to last as long as possible, using the minimum number of exchanges of two elements of the permutation.
Two arrangements of stones are considered different if there exists a position $i$ such that the colors of the stones on that position are different in these arrangements.
输入格式
Each test consists of multiple test cases. The first line contains the number of test cases $t$ ( $1 \leq t \leq 10^3$ ). Description of the test cases follows.
The first line of each test case contains $n$ ( $3 \leq n \leq 10^6$ ). The next line contains $n$ integers $p_1, \dots, p_n$ ( $1 \le p_i \le n$ ). It is guaranteed that $p$ is a permutation.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^6$ .
The first line of each test case contains $n$ ( $3 \leq n \leq 10^6$ ). The next line contains $n$ integers $p_1, \dots, p_n$ ( $1 \le p_i \le n$ ). It is guaranteed that $p$ is a permutation.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^6$ .
输出格式
For each of the $t$ test cases, print two integers on a new line: the largest possible number of days the world can last, modulo $10^9 + 7$ , and the minimum number of exchanges required for that.
输入输出样例
输入 #1
3 3 2 3 1 3 2 1 3 3 1 2 3
输出 #1
3 0 3 1 3 2
输入 #2
5 4 2 3 4 1 4 2 3 1 4 4 2 1 4 3 4 2 1 3 4 4 1 2 3 4
输出 #2
4 0 4 1 4 0 4 1 4 2
Let's label the colors of the stones with letters. Explanations for the first two test cases of the first example:
1. Using the permutation $[2, 3, 1]$ , we can additionally obtain the arrangements CAB and BCA from ABC. This is already the maximum possible result.
2. Using the permutation $[2, 1, 3]$ , the only BAC can be obtained from ABC. As we saw in the previous case, two arrangements are not the maximum possible number of distinct arrangements for $n = 3$ . To get an optimal permutation, for example, we can swap $1$ and $3$ , so we will get the permutation $[2, 3, 1]$ .
1. Using the permutation $[2, 3, 1]$ , we can additionally obtain the arrangements CAB and BCA from ABC. This is already the maximum possible result.
2. Using the permutation $[2, 1, 3]$ , the only BAC can be obtained from ABC. As we saw in the previous case, two arrangements are not the maximum possible number of distinct arrangements for $n = 3$ . To get an optimal permutation, for example, we can swap $1$ and $3$ , so we will get the permutation $[2, 3, 1]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted