A12006 | Region Separation
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ cities in the Kingdom of Autumn, numbered from $1$ to $n$ . People can travel between any two cities using $n-1$ two-directional roads.
This year, the government decides to separate the kingdom. There will be regions of different levels. The whole kingdom will be the region of level $1$ . Each region of $i$ -th level should be separated into several (at least two) regions of $i+1$ -th level, unless $i$ -th level is the last level. Each city should belong to exactly one region of each level and for any two cities in the same region, it should be possible to travel between them passing the cities in the same region only.
According to research, for each city $i$ , there is a value $a_i$ , which describes the importance of this city. All regions of the same level should have an equal sum of city importances.
Your task is to find how many plans there are to determine the separation of the regions that all the conditions are satisfied. Two plans are considered different if and only if their numbers of levels are different or there exist two cities in the same region of one level in one plan but in different regions of this level in the other plan. Since the answer may be very large, output it modulo $10^9+7$ .
This year, the government decides to separate the kingdom. There will be regions of different levels. The whole kingdom will be the region of level $1$ . Each region of $i$ -th level should be separated into several (at least two) regions of $i+1$ -th level, unless $i$ -th level is the last level. Each city should belong to exactly one region of each level and for any two cities in the same region, it should be possible to travel between them passing the cities in the same region only.
According to research, for each city $i$ , there is a value $a_i$ , which describes the importance of this city. All regions of the same level should have an equal sum of city importances.
Your task is to find how many plans there are to determine the separation of the regions that all the conditions are satisfied. Two plans are considered different if and only if their numbers of levels are different or there exist two cities in the same region of one level in one plan but in different regions of this level in the other plan. Since the answer may be very large, output it modulo $10^9+7$ .
输入格式
The first line contains one integer $n$ ( $1 \leq n \leq 10^6$ ) — the number of the cities.
The second line contains $n$ integers, the $i$ -th of which is $a_i$ ( $1 \leq a_i \leq 10^9$ ) — the value of each city.
The third line contains $n-1$ integers, $p_1, p_2, \ldots, p_{n-1}$ ; $p_i$ ( $p_i \leq i$ ) describes a road between cities $p_i$ and $i+1$ .
The second line contains $n$ integers, the $i$ -th of which is $a_i$ ( $1 \leq a_i \leq 10^9$ ) — the value of each city.
The third line contains $n-1$ integers, $p_1, p_2, \ldots, p_{n-1}$ ; $p_i$ ( $p_i \leq i$ ) describes a road between cities $p_i$ and $i+1$ .
输出格式
Print one integer — the number of different plans modulo $10^9+7$ .
输入输出样例
输入 #1
4 1 1 1 1 1 2 3
输出 #1
4
输入 #2
4 1 1 1 1 1 2 2
输出 #2
2
输入 #3
4 1 2 1 2 1 1 3
输出 #3
3
For the first example, there are $4$ different plans:
Plan $1$ : Level- $1$ : $\{1,2,3,4\}$ .
Plan $2$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1,2\}$ , $\{3,4\}$ .
Plan $3$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1\}$ , $\{2\}$ , $\{3\}$ , $\{4\}$ .
Plan $4$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1,2\}$ , $\{3,4\}$ , Level- $3$ : $\{1\}$ , $\{2\}$ , $\{3\}$ , $\{4\}$ .
For the second example, there are $2$ different plans:
Plan $1$ : Level- $1$ : $\{1,2,3,4\}$ .
Plan $2$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1\}$ , $\{2\}$ , $\{3\}$ , $\{4\}$ .
For the third example, there are $3$ different plans:
Plan $1$ : Level- $1$ : $\{1,2,3,4\}$ .
Plan $2$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1,2\}$ , $\{3,4\}$ .
Plan $3$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1,3\}$ , $\{2\}$ , $\{4\}$ .
Plan $1$ : Level- $1$ : $\{1,2,3,4\}$ .
Plan $2$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1,2\}$ , $\{3,4\}$ .
Plan $3$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1\}$ , $\{2\}$ , $\{3\}$ , $\{4\}$ .
Plan $4$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1,2\}$ , $\{3,4\}$ , Level- $3$ : $\{1\}$ , $\{2\}$ , $\{3\}$ , $\{4\}$ .
For the second example, there are $2$ different plans:
Plan $1$ : Level- $1$ : $\{1,2,3,4\}$ .
Plan $2$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1\}$ , $\{2\}$ , $\{3\}$ , $\{4\}$ .
For the third example, there are $3$ different plans:
Plan $1$ : Level- $1$ : $\{1,2,3,4\}$ .
Plan $2$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1,2\}$ , $\{3,4\}$ .
Plan $3$ : Level- $1$ : $\{1,2,3,4\}$ , Level- $2$ : $\{1,3\}$ , $\{2\}$ , $\{4\}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted