

Time Limit: 4 sec / Memory Limit: 1024 MB
配点 : 点
問題文
頂点 辺の有向グラフがあります。
頂点は と番号付けられており、 番目の辺は頂点 から頂点 に向けて張られています。
はじめ、頂点 には 個の落とし物があります。これらの落とし物を 人で拾うことになりました。
人は 人ずつグラフ上を移動します。各々は次のような行動をとります。
- 頂点 から出発し、辺をたどって移動することを任意の有限回繰り返す。訪れた各頂点(頂点 も含む)について、落とし物がまだ拾われていなければ、全て拾う。
合計で最大何個の落とし物を拾うことができるか求めてください。
制約
- ならば、 または
- 入力は全て整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
5 5 2 1 2 2 3 3 2 1 4 1 5 1 4 5 2 8
出力例 1Copy
18
人がそれぞれ次のように行動することで、 個の落とし物を拾うことができます。
- 人目は、頂点 の順に移動し、頂点 にある落とし物を拾う。
- 人目は、頂点 の順に移動し、頂点 にある落とし物を拾う。
個以上の落とし物を拾うことはできないので、 を出力します。
入力例 2Copy
3 1 10 2 3 1 100 100
出力例 2Copy
1
Score : points
Problem Statement
There is a directed graph with vertices and edges.
The vertices are numbered , and the -th edge goes from Vertex to Vertex .
Initially, there are items on Vertex that someone has lost. people will collect these items.
The people will travel in the graph one by one. Each person will do the following.
- Start on Vertex . Then, traverse an edge any finite number of times. For each vertex visited (including Vertex ), collect all items on it if they have not been collected yet.
Find the maximum total number of items that can be collected.
Constraints
- or , if .
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
5 5 2 1 2 2 3 3 2 1 4 1 5 1 4 5 2 8
Sample Output 1Copy
18
The two people can collect items as follows.
- The first person goes and collects the items on Vertices , , and .
- The second person goes and collects the items on Vertex .
It is impossible to collect or more items, so we should print .
Sample Input 2Copy
3 1 10 2 3 1 100 100
Sample Output 2Copy
1