CF1034C.Region Separation
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 ai , 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 109+7 .
输入格式
The first line contains one integer n ( 1≤n≤106 ) — the number of the cities.
The second line contains n integers, the i -th of which is ai ( 1≤ai≤109 ) — the value of each city.
The third line contains n−1 integers, p1,p2,…,pn−1 ; pi ( pi≤i ) describes a road between cities pi and i+1 .
输出格式
Print one integer — the number of different plans modulo 109+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} .