#P1034C. Region Separation
Region Separation
No submission language available for this problem.
Description
There are cities in the Kingdom of Autumn, numbered from to . People can travel between any two cities using 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 . Each region of -th level should be separated into several (at least two) regions of -th level, unless -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 , there is a value , 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 .
The first line contains one integer () — the number of the cities.
The second line contains integers, the -th of which is () — the value of each city.
The third line contains integers, ; () describes a road between cities and .
Print one integer — the number of different plans modulo .
Input
The first line contains one integer () — the number of the cities.
The second line contains integers, the -th of which is () — the value of each city.
The third line contains integers, ; () describes a road between cities and .
Output
Print one integer — the number of different plans modulo .
Samples
Note
For the first example, there are different plans:
Plan : Level-: .
Plan : Level-: , Level-: ,.
Plan : Level-: , Level-: ,,,.
Plan : Level-: , Level-: ,, Level-: ,,,.
For the second example, there are different plans:
Plan : Level-: .
Plan : Level-: , Level-: ,,,.
For the third example, there are different plans:
Plan : Level-: .
Plan : Level-: , Level-: ,.
Plan : Level-: , Level-: ,,.